34 lines
706 B
JSON
34 lines
706 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/tests/**/*.ts",
|
|
"lib"
|
|
],
|
|
"include": [
|
|
"src/**/*",
|
|
"src/**/*.json"
|
|
],
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "es2022",
|
|
"lib": [
|
|
"ES2021",
|
|
"ES2022.Object",
|
|
"DOM"
|
|
],
|
|
"outDir": "lib",
|
|
"rootDir": "./src",
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"useDefineForClassFields": true,
|
|
"strictPropertyInitialization": false,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"allowJs": true,
|
|
}
|
|
} |