42 lines
840 B
JSON
42 lines
840 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es6",
|
||
|
"module": "commonjs",
|
||
|
"lib": [
|
||
|
"es6",
|
||
|
"esnext"
|
||
|
],
|
||
|
"allowJs": true,
|
||
|
"declaration": true,
|
||
|
"sourceMap": true,
|
||
|
"outDir": "dist",
|
||
|
"rootDir": "src",
|
||
|
"removeComments": true,
|
||
|
"strict": false,
|
||
|
"noImplicitAny": true,
|
||
|
"moduleResolution": "node",
|
||
|
"strictNullChecks": false,
|
||
|
"resolveJsonModule": true,
|
||
|
"typeRoots": [
|
||
|
"node_modules/@types"
|
||
|
],
|
||
|
"esModuleInterop": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"downlevelIteration": true,
|
||
|
"emitDecoratorMetadata": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"dist",
|
||
|
"**/*.test.ts"
|
||
|
],
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
],
|
||
|
"ts-node": {
|
||
|
"files": true
|
||
|
},
|
||
|
"files": [
|
||
|
"src/types.d.ts",
|
||
|
],
|
||
|
}
|