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": [
|
|
|
|
"es2022"
|
|
|
|
],
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es2022",
|
|
|
|
"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/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
2023-07-05 23:22:31 +00:00
|
|
|
}
|