TeaWeb/tsbaseconfig.json

31 lines
666 B
JSON
Raw Permalink Normal View History

/* 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"
],
2021-03-16 15:40:17 +00:00
"removeComments": false,
"esModuleInterop": true,
"skipLibCheck": true
},
"include": [
"webpack.config.ts",
"webpack-web.config.ts",
"webpack/build-definitions.d.ts",
"webpack/HtmlWebpackInlineSource.ts",
"webpack/WatLoader.ts",
"webpack/ManifestPlugin.ts",
2020-08-09 09:43:57 +00:00
"babel.config.ts",
2021-03-17 17:52:35 +00:00
"postcss.config.ts",
"file.ts"
],
"exclude": [
"node_modules",
"dist",
"declarations"
]
}