d6a84ff50e
Make consistent with other packages commit-id:3a9a4cd2
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Node 18 + Strictest",
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"esnext"
|
|
],
|
|
"module": "commonjs",
|
|
"target": "esnext",
|
|
"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": true,
|
|
"resolveJsonModule": true,
|
|
"strictNullChecks": true
|
|
},
|
|
"include": [
|
|
"lib/**/*"
|
|
],
|
|
"exclude": ["node_modules", "test", "dist", "**/*spec.ts", "coverage"]
|
|
}
|