47 lines
931 B
JSON
47 lines
931 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"resolveJsonModule": true,
|
|
"downlevelIteration": false,
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es5",
|
|
"es2015.promise",
|
|
"es2016",
|
|
"dom"
|
|
],
|
|
"outDir": "./dist",
|
|
"paths": {
|
|
"@/*": [
|
|
"*"
|
|
],
|
|
"*": [
|
|
"*"
|
|
]
|
|
},
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"stripInternal": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"alwaysStrict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"removeComments": false,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"skipLibCheck": true,
|
|
"pretty": true,
|
|
"strictPropertyInitialization": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |