blob: c37e9c47feba47757f30b2100c4de473b87a100f [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 },
simond8ca2f22022-10-11 23:30:55 -040020 "include": ["src"]
idillond858c182022-09-16 13:18:26 -040021}