UNPKG

@mheob/tsconfig

Version:

My personal configurations for typescript.

27 lines (26 loc) 698 B
{ "$schema": "https://json.schemastore.org/tsconfig", "display": "Base/ESM", "compilerOptions": { "lib": ["ES2022"], "module": "ES2022", "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 }, "exclude": ["node_modules"] }