29 lines
617 B
JSON
29 lines
617 B
JSON
/* TSC config for the core files of the application, like the file manager and webpack */
|
|
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"sourceMap": true,
|
|
"lib": ["es6"],
|
|
"removeComments": false,
|
|
},
|
|
"include": [
|
|
"webpack.config.ts",
|
|
"webpack-client.config.ts",
|
|
"webpack-web.config.ts",
|
|
|
|
"webpack/build-definitions.d.ts",
|
|
"webpack/ManifestPlugin.ts",
|
|
"webpack/EJSGenerator.ts",
|
|
"webpack/WatLoader.ts",
|
|
"webpack/DevelBlocks.ts",
|
|
|
|
"loader/IndexGenerator.ts",
|
|
|
|
"babel.config.ts",,
|
|
"file.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |