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