30 lines
780 B
JSON
30 lines
780 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "commonjs",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"strictFunctionTypes": true,
|
||
|
|
"strictBindCallApply": true,
|
||
|
|
"strictPropertyInitialization": true,
|
||
|
|
"noImplicitThis": true,
|
||
|
|
"alwaysStrict": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noFallthroughCasesInSwitch": true
|
||
|
|
},
|
||
|
|
"include": ["src/**/*"],
|
||
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts"]
|
||
|
|
}
|