TeaWeb/tsconfig.json

20 lines
549 B
JSON
Raw Normal View History

2018-10-28 22:01:09 +00:00
/* General file with least possible errors. This is just for your IDE (PHP-Storm for example) */
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
2019-05-21 09:20:34 +00:00
"sourceMap": true,
2019-08-21 08:00:01 +00:00
"lib": ["es6", "dom", "dom.iterable"],
"removeComments": true /* we dont really need them within the target files */
},
"exclude": [
"node_modules",
"shared/js/workers",
2018-10-28 22:01:09 +00:00
"shared/declarations/**/*.d.ts",
"shared/generated",
2018-10-28 22:01:09 +00:00
"web/declarations/**/*.d.ts",
"web/generated/",
"web/environment/",
2018-10-28 22:01:09 +00:00
"vendor/**/*.ts"
]
}