microsoft/typespec
Publicmirrored from https://github.com/microsoft/typespecAvailable
packages/html-program-viewer/tsconfig.json
19lines · modecode
| 1 | { |
| 2 | "extends": "../../tsconfig.base.json", |
| 3 | "references": [ |
| 4 | { "path": "../compiler/tsconfig.json" }, |
| 5 | { "path": "../rest/tsconfig.json" }, |
| 6 | { "path": "../openapi/tsconfig.json" } |
| 7 | ], |
| 8 | "compilerOptions": { |
| 9 | "outDir": "dist", |
| 10 | "rootDir": ".", |
| 11 | "tsBuildInfoFile": "temp/tsconfig.tsbuildinfo", |
| 12 | "skipLibCheck": true, |
| 13 | "jsx": "react-jsx", |
| 14 | "jsxImportSource": "@emotion/react", |
| 15 | "lib": ["DOM", "ES2022"], |
| 16 | "types": ["@emotion/react"] |
| 17 | }, |
| 18 | "include": ["src/**/*.ts", "src/**/*.tsx", "test/**/*.ts"] |
| 19 | } |
| 20 | |