-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
39 lines (39 loc) · 1.12 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
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"strictNullChecks": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"downlevelIteration": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": "./src",
"types": ["cypress", "cypress-file-upload", "node", "cypress-localstorage-commands"]
},
"include": ["src", "supabase.client.ts", "cypress.config.ts", "cypress/e2e/**/*.ts"],
"exclude": [
"node_modules",
"cypress",
"*.spec.ts",
"src/constants/locations/*.ts",
"src/constants/badges.ts",
"src/constants/changelog.ts",
"src/constants/colors.ts",
"src/constants/effectiveness.ts",
"src/constants/filters.ts",
"src/constants/moves.ts",
"src/constants/pokemon.ts",
"src/constants/nickname.ts",
"src/constants/details.ts"
]
}