30 lines
656 B
JSON
30 lines
656 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", "dom"],
|
|
"removeComments": false,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": [
|
|
"webpack.config.ts",
|
|
"webpack-client.config.ts",
|
|
"webpack-web.config.ts",
|
|
|
|
"webpack/build-definitions.d.ts",
|
|
"webpack/HtmlWebpackInlineSource.ts",
|
|
"webpack/WatLoader.ts",
|
|
"webpack/ManifestPlugin.ts",
|
|
|
|
"babel.config.ts",
|
|
"postcss.config.ts",
|
|
"file.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"declarations"
|
|
]
|
|
} |