2018-10-28 23:01:09 +01:00
|
|
|
/* general shared project config */
|
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
2018-12-15 14:04:29 +01:00
|
|
|
"sourceMap": true,
|
2019-05-21 18:15:02 +02:00
|
|
|
"experimentalDecorators": true,
|
2021-03-14 19:39:08 +01:00
|
|
|
"esModuleInterop": true,
|
2018-12-15 14:04:29 +01:00
|
|
|
"plugins": [ /* ttypescript */
|
|
|
|
{
|
|
|
|
"transform": "../../tools/trgen/ttsc_transformer.js",
|
|
|
|
"type": "program",
|
|
|
|
"target_file": "../generated/messages_script.json",
|
|
|
|
"verbose": true
|
|
|
|
}
|
|
|
|
]
|
2018-10-28 23:01:09 +01:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"../js/workers"
|
|
|
|
],
|
|
|
|
"include": [
|
2019-05-25 20:24:30 +02:00
|
|
|
"../types",
|
2018-10-28 23:01:09 +01:00
|
|
|
"../declarations/imports_*.d.ts",
|
2019-08-30 23:06:39 +02:00
|
|
|
"../declarations/exports_loader_app.d.ts",
|
2019-05-21 18:15:02 +02:00
|
|
|
"../backend",
|
2018-10-28 23:01:09 +01:00
|
|
|
"../js/**/*.ts"
|
|
|
|
]
|
|
|
|
}
|