2018-10-28 22:01:09 +00:00
|
|
|
/* packed web project config */
|
|
|
|
{
|
|
|
|
"extends": "./tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "none",
|
2019-05-21 16:15:02 +00:00
|
|
|
"outFile": "../generated/web.js",
|
2018-10-28 22:01:09 +00:00
|
|
|
"allowJs": true
|
|
|
|
},
|
2019-05-21 16:15:02 +00:00
|
|
|
"exclude": [
|
|
|
|
"../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-05-21 16:15:02 +00:00
|
|
|
"../js/**/*.ts"
|
2018-10-28 22:01:09 +00:00
|
|
|
]
|
|
|
|
}
|