31 lines
683 B
JSON
31 lines
683 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "es2015",
|
|
"moduleResolution": "bundler",
|
|
"lib": [
|
|
"es2017",
|
|
"dom"
|
|
],
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"experimentalDecorators": true,
|
|
"noErrorTruncation": true,
|
|
"declaration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts"
|
|
],
|
|
"exclude": []
|
|
} |