| 1 |
{ |
| 2 |
"$schema": "https://json.schemastore.org/tsconfig", |
| 3 |
"display": "Node 18 + ESM + Strictest", |
| 4 |
"compilerOptions": { |
| 5 |
"lib": [ |
| 6 |
"es2022" |
| 7 |
], |
| 8 |
"module": "commonjs", |
| 9 |
"target": "ES6", |
| 10 |
"declaration": true, |
| 11 |
"declarationMap": true, |
| 12 |
"esModuleInterop": true, |
| 13 |
"skipLibCheck": true, |
| 14 |
"forceConsistentCasingInFileNames": true, |
| 15 |
"moduleResolution": "node", |
| 16 |
"allowUnusedLabels": false, |
| 17 |
"allowUnreachableCode": false, |
| 18 |
"noFallthroughCasesInSwitch": true, |
| 19 |
"noImplicitOverride": true, |
| 20 |
"noImplicitReturns": true, |
| 21 |
"noImplicitAny": true, |
| 22 |
"noPropertyAccessFromIndexSignature": false, |
| 23 |
"noUncheckedIndexedAccess": true, |
| 24 |
"noUnusedLocals": true, |
| 25 |
"noUnusedParameters": true, |
| 26 |
"checkJs": false, |
| 27 |
"allowJs": false, |
| 28 |
"resolveJsonModule": true |
| 29 |
} |
| 30 |
} |
| 31 |
|