blob: caf3b261f43abd7e36b62e1113ed91b812185bcb [file] [log] [blame]
idillond858c182022-09-16 13:18:26 -04001{
2 "compilerOptions": {
Misha Krieger-Raynauld173fbba2022-11-16 14:10:38 -05003 "target": "esnext",
simond8ca2f22022-10-11 23:30:55 -04004 "lib": ["DOM", "DOM.Iterable", "ESNext"],
Misha Krieger-Raynauld173fbba2022-11-16 14:10:38 -05005 "jsx": "react-jsx",
6 "useDefineForClassFields": true,
7 "module": "esnext",
8 "moduleResolution": "node",
9 "types": ["@testing-library/jest-dom", "@types/jest", "node", "vite/client", "vite-plugin-svgr/client"],
10 "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 },
Misha Krieger-Raynauld86917ea2022-11-20 14:21:02 -050020 "include": ["src"],
21 "references": [{ "path": "./tsconfig.node.json" }, { "path": "../common" }]
idillond858c182022-09-16 13:18:26 -040022}