-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
44 lines (37 loc) · 1.1 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "ReactRouter7",
"compilerOptions": {
"strict": true,
"strictNullChecks": true,
"isolatedModules": true,
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"lib": ["DOM", "DOM.Iterable", "ES2023"],
"module": "ESNext",
"target": "ES2022",
"moduleResolution": "bundler",
"moduleDetection": "force",
"resolveJsonModule": true,
"noEmit": true,
"incremental": true,
"jsx": "react-jsx",
"types": ["@cloudflare/workers-types/experimental", "vite/client"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"pretty": true,
"preserveWatchOutput": true,
"tsBuildInfoFile": "tsconfig.tsbuildinfo",
"baseUrl": ".",
"rootDirs": [".", "./.react-router/types"],
"paths": {
"~/*": ["./app/*"]
}
},
"include": [".react-router/types/**/*", "app/**/*", "app/**/.server/**/*", "app/**/.client/**/*", "workers/**/*"],
"exclude": ["node_modules", "dist", "build"]
}