microsoft/qdk
Publicmirrored from https://github.com/microsoft/qdkAvailable
source/vscode/src/webview/tsconfig.json
15lines · modecode
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "module": "CommonJS", |
| 4 | "target": "ES2020", |
| 5 | "noEmit": true, |
| 6 | "lib": ["DOM", "ES2021"], |
| 7 | "rootDir": ".", |
| 8 | "strict": true /* enable all strict type-checking options */, |
| 9 | "jsx": "react-jsx", |
| 10 | "jsxImportSource": "preact", |
| 11 | "isolatedModules": true, |
| 12 | "esModuleInterop": true, |
| 13 | "skipLibCheck": true |
| 14 | } |
| 15 | } |
| 16 | |