| { |
| "compilerOptions": { |
| // Language and Environment |
| "lib": [ |
| "es2023" |
| ], |
| "module": "esnext", |
| "target": "es2023", |
| // Type Checking |
| "strict": true, |
| "noFallthroughCasesInSwitch": true, |
| "noImplicitReturns": true, |
| "noUnusedLocals": true, |
| "noUnusedParameters": true, |
| // Interop Constraints |
| "esModuleInterop": true, |
| "forceConsistentCasingInFileNames": true, |
| "isolatedModules": true, |
| "verbatimModuleSyntax": true, |
| // Modules |
| "moduleResolution": "bundler", |
| "rootDir": ".", |
| // Emit |
| "declaration": true, |
| "emitDeclarationOnly": true, |
| "outDir": "dist/types", |
| "sourceMap": true, |
| // Completeness |
| "skipLibCheck": true, |
| // Projects |
| "incremental": true |
| }, |
| "include": [ |
| "src", |
| "syntax", |
| ], |
| "exclude": [ |
| "node_modules", |
| ".vscode-test" |
| ] |
| } |