-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
35 lines (35 loc) · 934 Bytes
/
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
{
"compilerOptions": {
"baseUrl": ".",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"strict": true,
"noEmit": true,
"allowJs": true,
"module": "esnext",
"jsx": "react-jsx",
"skipLibCheck": true,
"noImplicitAny": false,
"noImplicitThis": true,
"esModuleInterop": true,
"isolatedModules": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"useUnknownInCatchVariables": false,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"types": ["vitest/globals", "cypress", "@testing-library/cypress", "google.maps"],
"paths": {
"~/*": ["./src/*"]
}
},
"exclude": ["node_modules"],
"include": ["**/*.ts", "**/*.tsx", "src/**/*", "src/custom.d.ts"],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}