-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (33 loc) · 942 Bytes
/
tsconfig.json
File metadata and controls
34 lines (33 loc) · 942 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
{
"include": ["**/*.ts", "**/*.tsx", ".react-router/types/**/*"],
"exclude": ["node_modules", "opensrc"],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2024"],
"types": ["@types/node", "vite/client"],
"isolatedModules": true,
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"jsx": "react-jsx",
"module": "es2022",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"target": "es2022",
"strict": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"~/*": ["./*"]
},
"plugins": [
{
"name": "gql.tada/ts-plugin",
"schema": "./batch/github/schema.graphql",
"tadaOutputLocation": "./batch/github/graphql-env.d.ts"
}
],
"skipLibCheck": true,
// Remix takes care of building everything in `remix build`.
"noEmit": true,
"rootDirs": [".", "./.react-router/types"]
}
}