25 lines
No EOL
592 B
JSON
25 lines
No EOL
592 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"noImplicitAny": false,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
"noImplicitReturns": true,
|
|
"strictNullChecks": false
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"typings"
|
|
]
|
|
} |