blob: 7b01c1eb2335a7f201ef5acd8f0e4cc67002a142 [file] [log] [blame]
idillond858c182022-09-16 13:18:26 -04001{
2 "compilerOptions": {
Larbi Gharibb38e3542022-12-07 06:09:10 -05003 "target": "es2022",
4 "lib": ["DOM", "DOM.Iterable", "ES2022"],
Misha Krieger-Raynauld173fbba2022-11-16 14:10:38 -05005 "jsx": "react-jsx",
6 "useDefineForClassFields": true,
Larbi Gharibb38e3542022-12-07 06:09:10 -05007 "module": "es2022",
Misha Krieger-Raynauld173fbba2022-11-16 14:10:38 -05008 "moduleResolution": "node",
Larbi Gharibb38e3542022-12-07 06:09:10 -05009 "types": ["cypress", "node", "vite/client", "vite-plugin-svgr/client"],
Misha Krieger-Raynauld173fbba2022-11-16 14:10:38 -050010 "resolveJsonModule": true,
11 "allowJs": true, // TODO: Set this to false
12 "noEmit": true,
13 "isolatedModules": true,
14 "allowSyntheticDefaultImports": true,
15 "esModuleInterop": false,
16 "forceConsistentCasingInFileNames": true,
17 "strict": true,
18 "skipLibCheck": true
simon06527b02022-10-01 15:01:47 -040019 },
Larbi Gharibb38e3542022-12-07 06:09:10 -050020 "include": ["src", "src/client/cypress/**/*.cy.ts"],
21 "references": [
22 {
23 "path": "./tsconfig.node.json"
24 },
25 {
26 "path": "../common"
27 }
28 ]
idillond858c182022-09-16 13:18:26 -040029}