microsoft/hve-core
Publicmirrored from https://github.com/microsoft/hve-coreAvailable
docs/docusaurus/tsconfig.json
15lines · modecode
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "jsx": "react-jsx", |
| 4 | "esModuleInterop": true, |
| 5 | "module": "esnext", |
| 6 | "moduleResolution": "node", |
| 7 | "target": "es2020", |
| 8 | "noEmit": true, |
| 9 | "skipLibCheck": true, |
| 10 | "resolveJsonModule": true, |
| 11 | "types": ["node", "@docusaurus/module-type-aliases", "@docusaurus/theme-classic"] |
| 12 | }, |
| 13 | "include": ["src/", "e2e/"], |
| 14 | "exclude": ["**/*.test.ts", "**/*.test.tsx", "**/__mocks__/**", "**/__tests__/**"] |
| 15 | } |
| 16 | |