-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
45 lines (45 loc) · 1.41 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"compilerOptions": {
"incremental": true,
"outDir": "build/lib",
"target": "es2017",
"lib": ["es6", "dom", "dom.iterable", "esnext", "ES2022.Object"],
"sourceMap": true,
"importHelpers": true,
"declaration": false,
"rootDir": "src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowJs": false,
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react",
"module": "esnext",
"moduleResolution": "node",
"baseUrl": "src",
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"isolatedModules": true,
"noEmit": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"typeRoots": ["src/types", "node_modules/@types"],
"types": ["vitest", "vite/client", "vitest/globals"]
},
"include": ["src", "deps/flow/flow.d.ts", "deps/supabase/types.d.ts"],
"exclude": [
"node_modules",
"build",
"scripts",
"deps/flow/flow-bin",
"playwright-tests"
]
}