-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
31 lines (30 loc) · 947 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
{
"include": ["remix.env.d.ts", "starknet.env.d.ts", "**/*.ts", "**/*.tsx"],
"compilerOptions": {
"types": ["vitest/importMeta", "vitest/globals"],
"lib": ["DOM", "DOM.Iterable", "ES2019"],
"isolatedModules": true,
"esModuleInterop": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"moduleResolution": "node",
"resolveJsonModule": true,
"target": "ES2019",
"module": "ESNext",
"strict": true,
"allowJs": true,
"noImplicitAny": true,
"noUncheckedIndexedAccess": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"],
"react": ["./node_modules/@types/react"],
"react/*": ["./node_modules/@types/react/*"],
"react-dom": ["./node_modules/@types/react-dom"],
"react-dom/*": ["./node_modules/@types/react-dom/*"]
},
// Remix takes care of building everything in `remix build`.
"noEmit": true
}
}