2021-09-07 18:25:31 +00:00
|
|
|
{
|
2023-07-05 23:22:31 +00:00
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
|
|
"display": "Node 18 + Strictest",
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": [
|
2023-12-21 22:55:03 +00:00
|
|
|
"esnext"
|
2023-07-05 23:22:31 +00:00
|
|
|
],
|
|
|
|
"module": "commonjs",
|
2023-12-21 22:55:03 +00:00
|
|
|
"target": "esnext",
|
2023-07-05 23:22:31 +00:00
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"declaration": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"rootDir": "./lib",
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"resolveJsonModule": true
|
2023-07-05 23:51:18 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"lib/**/*"
|
|
|
|
],
|
2023-11-14 15:31:21 +00:00
|
|
|
"exclude": ["node_modules", "test", "dist", "**/*spec.ts", "coverage"]
|
2023-07-05 23:22:31 +00:00
|
|
|
}
|