2020-04-02 15:40:09 +00:00
|
|
|
/* TSC config for the core files of the application, like the file manager and webpack */
|
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"sourceMap": true,
|
2020-08-09 09:50:03 +00:00
|
|
|
"lib": ["es6", "dom"],
|
|
|
|
"removeComments": false
|
2020-04-02 15:40:09 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"webpack.config.ts",
|
|
|
|
"webpack-client.config.ts",
|
|
|
|
"webpack-web.config.ts",
|
|
|
|
|
|
|
|
"webpack/build-definitions.d.ts",
|
|
|
|
"webpack/ManifestPlugin.ts",
|
2020-04-09 21:09:59 +00:00
|
|
|
"webpack/EJSGenerator.ts",
|
2020-04-02 15:40:09 +00:00
|
|
|
"webpack/WatLoader.ts",
|
2020-04-18 18:07:16 +00:00
|
|
|
"webpack/DevelBlocks.ts",
|
2020-04-02 15:40:09 +00:00
|
|
|
|
2020-07-13 09:29:16 +00:00
|
|
|
"loader/IndexGenerator.ts",
|
|
|
|
|
2020-08-09 09:43:57 +00:00
|
|
|
"babel.config.ts",
|
2020-04-02 15:40:09 +00:00
|
|
|
"file.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
2020-07-13 09:29:16 +00:00
|
|
|
"node_modules"
|
2020-04-02 15:40:09 +00:00
|
|
|
]
|
|
|
|
}
|