-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
35 lines (34 loc) · 993 Bytes
/
tsconfig.json
File metadata and controls
35 lines (34 loc) · 993 Bytes
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
{
"include": [".react-router/types/**/*", "vite.config.mts", "**/*.js", "**/*.ts", "**/*.tsx"],
"exclude": ["coverage", "public", "build", "build-v2", "node_modules", "instrumented"],
"compilerOptions": {
"types": ["@react-router/node", "vite/client"],
"skipLibCheck": true,
"module": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ES2019", "ES2023"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"target": "ES2019",
"strict": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"],
"@/fixtures/*": ["tests/cypress/fixtures/*"],
"tests/*": ["tests/*"]
},
// React Router takes care of building everything.
"noEmit": true
},
"ts-node": {
"compilerOptions": {
"types": ["node"],
"module": "ES2015",
"moduleResolution": "Node"
}
}
}