41 lines
934 B
JSON
41 lines
934 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"dom",
|
|
"es6",
|
|
"es2017",
|
|
"ES2021.String",
|
|
"esnext.asynciterable"
|
|
],
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"moduleResolution": "node",
|
|
"removeComments": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"rootDir": "./src",
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.d.ts"
|
|
]
|
|
}
|