You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
652 B
28 lines
652 B
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"allowJs": true,
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"noUnusedLocals": true,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"pretty": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"./app.ts",
|
|
"./src/*",
|
|
"./src/**/*",
|
|
"./config/*.json"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|