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"],
|
2021-03-16 15:40:17 +00:00
|
|
|
"removeComments": false,
|
|
|
|
"esModuleInterop": true
|
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",
|
2021-03-17 12:28:27 +00:00
|
|
|
"webpack/HtmlWebpackInlineSource.ts",
|
2020-04-02 15:40:09 +00:00
|
|
|
"webpack/WatLoader.ts",
|
2021-03-17 12:28:27 +00:00
|
|
|
"webpack/ManifestPlugin.ts",
|
2020-07-13 09:29:16 +00:00
|
|
|
|
2020-08-09 09:43:57 +00:00
|
|
|
"babel.config.ts",
|
2021-03-17 17:52:35 +00:00
|
|
|
"postcss.config.ts",
|
2020-04-02 15:40:09 +00:00
|
|
|
"file.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
2020-11-29 20:00:59 +00:00
|
|
|
"node_modules",
|
|
|
|
"dist",
|
|
|
|
"declarations"
|
2020-04-02 15:40:09 +00:00
|
|
|
]
|
|
|
|
}
|