TeaWeb/shared/tsconfig/tsconfig.json

26 lines
554 B
JSON
Raw Normal View History

2018-10-28 22:01:09 +00:00
/* general shared project config */
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"sourceMap": true,
"experimentalDecorators": true,
"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": [
"../types",
2018-10-28 22:01:09 +00:00
"../declarations/imports_*.d.ts",
"../backend",
2018-10-28 22:01:09 +00:00
"../js/**/*.ts"
]
}