mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
Update tsconfig files and switch to _build for outputs, for consistency with main grist repo
This commit is contained in:
@@ -8,7 +8,16 @@
|
||||
"noImplicitAny": true,
|
||||
"noUnusedLocals": true,
|
||||
"moduleResolution": "node",
|
||||
"allowJs": true,
|
||||
"baseUrl": "..",
|
||||
"rootDir": "..",
|
||||
"outDir": "../_build",
|
||||
"paths": {
|
||||
"*": [
|
||||
"*",
|
||||
"grist-core/*",
|
||||
],
|
||||
},
|
||||
"composite": true,
|
||||
"plugins": [{
|
||||
"name": "typescript-tslint-plugin"
|
||||
|
||||
@@ -7,7 +7,7 @@ const path = require('path');
|
||||
module.exports = {
|
||||
target: 'web',
|
||||
entry: {
|
||||
main: "./build/app/client/index.js",
|
||||
main: "app/client/index.js",
|
||||
},
|
||||
output: {
|
||||
filename: "[name].bundle.js",
|
||||
@@ -33,7 +33,7 @@ module.exports = {
|
||||
devtool: "source-map",
|
||||
resolve: {
|
||||
modules: [
|
||||
path.resolve('./build'),
|
||||
path.resolve('./_build'),
|
||||
path.resolve('./node_modules')
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user