2018-02-22 15:29:47 +00:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
2018-03-05 08:49:48 +00:00
|
|
|
"jsx": "preserve",
|
2018-02-22 15:29:47 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"removeComments": false,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"typeRoots": [
|
|
|
|
"./node_modules/@types"
|
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"es2015",
|
|
|
|
"es2016"
|
|
|
|
],
|
2018-03-05 08:49:48 +00:00
|
|
|
"outDir": "production-server/"
|
2018-02-22 15:29:47 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"server/**/*.ts"
|
|
|
|
]
|
2018-03-05 08:49:48 +00:00
|
|
|
}
|