2018-10-28 22:01:09 +00:00
|
|
|
/* General file with least possible errors. This is just for your IDE (PHP-Storm for example) */
|
2018-10-04 20:49:20 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-04-06 14:29:40 +00:00
|
|
|
"experimentalDecorators": true,
|
2018-10-04 20:49:20 +00:00
|
|
|
"target": "es6",
|
2018-10-28 17:25:43 +00:00
|
|
|
"module": "commonjs",
|
2019-05-21 09:20:34 +00:00
|
|
|
"sourceMap": true,
|
2021-01-08 20:30:48 +00:00
|
|
|
"lib": ["ES7", "dom", "dom.iterable"],
|
2020-03-27 22:36:57 +00:00
|
|
|
"removeComments": true, /* we dont really need them within the target files */
|
2020-03-28 12:58:36 +00:00
|
|
|
"jsx": "react",
|
2021-03-14 18:39:08 +00:00
|
|
|
"esModuleInterop": true,
|
2020-03-28 12:58:36 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2020-03-29 10:54:15 +00:00
|
|
|
"tc-shared/*": ["shared/js/*"],
|
2020-07-12 14:31:57 +00:00
|
|
|
"tc-loader": ["loader/exports/loader.d.ts"],
|
2021-02-19 22:04:02 +00:00
|
|
|
"tc-events": ["vendor/TeaEventBus/src/index.ts"],
|
|
|
|
"tc-services": ["vendor/TeaClientServices/src/index.ts"],
|
2020-07-12 14:31:57 +00:00
|
|
|
|
2020-11-29 13:42:02 +00:00
|
|
|
"svg-sprites/*": ["shared/svg-sprites/*"],
|
2020-07-12 14:31:57 +00:00
|
|
|
"vendor/xbbcode/*": ["vendor/xbbcode/src/*"]
|
2020-03-28 12:58:36 +00:00
|
|
|
}
|
2018-10-04 20:49:20 +00:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2018-11-17 15:25:44 +00:00
|
|
|
"shared/js/workers",
|
2018-10-28 22:01:09 +00:00
|
|
|
"shared/declarations/**/*.d.ts",
|
2018-11-17 15:25:44 +00:00
|
|
|
"shared/generated",
|
2018-10-28 22:01:09 +00:00
|
|
|
"web/declarations/**/*.d.ts",
|
2018-11-17 15:25:44 +00:00
|
|
|
"web/generated/",
|
2020-07-19 15:12:41 +00:00
|
|
|
"web/environment/",
|
|
|
|
"loader/app/targets/certaccept.ts",
|
|
|
|
"tools/",
|
2020-11-29 20:00:59 +00:00
|
|
|
"vendor",
|
|
|
|
"dist",
|
|
|
|
"declarations"
|
2018-10-04 20:49:20 +00:00
|
|
|
]
|
|
|
|
}
|