TeaWeb/tsbaseconfig.json

31 lines
654 B
JSON
Raw 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"],
"removeComments": false
},
"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",
"webpack/WatLoader.ts",
2020-04-18 18:07:16 +00:00
"webpack/DevelBlocks.ts",
"loader/IndexGenerator.ts",
2020-08-09 09:43:57 +00:00
"babel.config.ts",
"file.ts"
],
"exclude": [
"node_modules",
"dist",
"declarations"
]
}