generated from forge-42/base-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 880 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 880 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
{
"include": ["env.d.ts", "**/*.ts", "**/*.tsx", "**/**/.server/**/*.ts", ".react-router/types/**/*"],
"compilerOptions": {
"types": ["vitest/globals", "@vitest/browser/providers/playwright"],
"lib": ["DOM", "DOM.Iterable", "ES2023"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"target": "ES2023",
"strict": true,
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"],
"content-collections": [".content-collections/generated"],
"content-collections-types": ["./content-collections.ts"]
},
"rootDirs": [".", "./.react-router/types"],
"plugins": [{ "name": "@react-router/dev" }],
// Vite takes care of building everything, not tsc.
"noEmit": true
}
}