TeaWeb/tsconfig.json

40 lines
1.2 KiB
JSON
Raw Normal View History

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