tsconfig.json (683B)
1 { 2 /* Visit https://aka.ms/tsconfig.json to read more about this file */ 3 "compilerOptions": { 4 "target": "ES2022", 5 "module": "ES2022", 6 "moduleResolution": "node", 7 8 "strict": true, 9 "allowUnusedLabels": false, 10 "allowUnreachableCode": false, 11 "exactOptionalPropertyTypes": true, 12 "noFallthroughCasesInSwitch": true, 13 "noImplicitOverride": true, 14 "noImplicitReturns": true, 15 "noPropertyAccessFromIndexSignature": true, 16 "noUncheckedIndexedAccess": true, 17 "noUnusedLocals": true, 18 "noUnusedParameters": true, 19 20 "checkJs": true, 21 22 "esModuleInterop": true, 23 "skipLibCheck": true, 24 "forceConsistentCasingInFileNames": true 25 }, 26 }