2018-10-28 22:01:09 +00:00
|
|
|
/*
|
|
|
|
config for generating one single file
|
|
|
|
Note: loader declarations have to be generated first
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
"extends": "./tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "none",
|
2018-12-15 13:04:29 +00:00
|
|
|
"outFile": "../generated/shared.js",
|
|
|
|
"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": [
|
2019-08-30 21:06:39 +00:00
|
|
|
"../js/workers"
|
2018-10-28 22:01:09 +00:00
|
|
|
],
|
|
|
|
"include": [
|
2019-05-25 18:24:30 +00:00
|
|
|
"../types",
|
2018-10-28 22:01:09 +00:00
|
|
|
"../declarations/imports_*.d.ts",
|
2019-08-30 21:06:39 +00:00
|
|
|
"../declarations/exports_loader_app.d.ts",
|
2019-05-21 16:15:02 +00:00
|
|
|
"../js/**/*.ts",
|
|
|
|
"../backend"
|
2018-10-28 22:01:09 +00:00
|
|
|
]
|
|
|
|
}
|