28 lines
630 B
JSON
28 lines
630 B
JSON
/* general shared project config */
|
|
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"sourceMap": true,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"plugins": [ /* ttypescript */
|
|
{
|
|
"transform": "../../tools/trgen/ttsc_transformer.js",
|
|
"type": "program",
|
|
"target_file": "../generated/messages_script.json",
|
|
"verbose": true
|
|
}
|
|
]
|
|
},
|
|
"exclude": [
|
|
"../js/workers"
|
|
],
|
|
"include": [
|
|
"../types",
|
|
"../declarations/imports_*.d.ts",
|
|
"../declarations/exports_loader_app.d.ts",
|
|
"../backend",
|
|
"../js/**/*.ts"
|
|
]
|
|
} |