microsoft/typespec
Publicmirrored from https://github.com/microsoft/typespecAvailable
packages/emitter-framework/tsconfig.json
21lines · modecode
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "lib": ["es2023", "DOM"], |
| 4 | "module": "NodeNext", |
| 5 | "moduleResolution": "NodeNext", |
| 6 | "target": "es2022", |
| 7 | "strict": true, |
| 8 | "skipLibCheck": true, |
| 9 | "isolatedModules": true, |
| 10 | "declaration": true, |
| 11 | "sourceMap": true, |
| 12 | "declarationMap": true, |
| 13 | "jsx": "preserve", |
| 14 | "jsxImportSource": "@alloy-js/core", |
| 15 | "emitDeclarationOnly": true, |
| 16 | "outDir": "dist", |
| 17 | "rootDir": "./" |
| 18 | }, |
| 19 | "include": ["src/**/*.ts", "src/**/*.tsx", "test/**/*.ts", "test/**/*.tsx"], |
| 20 | "exclude": ["node_modules", "dist"] |
| 21 | } |