| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "es2020", |
| 4 | "lib": ["dom", "dom.iterable", "esnext"], |
| 5 | "allowJs": true, |
| 6 | "jsx": "react-jsx", |
| 7 | "skipLibCheck": true, |
| 8 | "esModuleInterop": true, |
| 9 | "allowSyntheticDefaultImports": true, |
| 10 | "strict": true, |
| 11 | "forceConsistentCasingInFileNames": true, |
| 12 | "noFallthroughCasesInSwitch": true, |
| 13 | "sourceMap": true, |
| 14 | "module": "esnext", |
| 15 | "moduleResolution": "node", |
| 16 | "resolveJsonModule": true, |
| 17 | "isolatedModules": true, |
| 18 | "outDir": "dist" |
| 19 | }, |
| 20 | "include": [ |
| 21 | "webview/global.d.ts", |
| 22 | "extension", |
| 23 | "webview", |
| 24 | "vite-env.d.ts", |
| 25 | "rollup.extension.config.mjs", |
| 26 | "__mocks__" |
| 27 | ] |
| 28 | } |
| 29 | |