forked from remix-run/indie-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (33 loc) · 1.01 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
{
"exclude": ["./cypress"],
"include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2019"],
"types": ["vitest/globals"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "CommonJS",
"moduleResolution": "node",
"resolveJsonModule": true,
"target": "ES2019",
"strict": true,
"baseUrl": ".",
"paths": {
"~public/*": ["./public/*"],
"~/*": ["./app/*"],
"~constants": ["./app/__constants__/constants.ts"],
"~copy/*": ["./app/__copy__/*"],
"~types": ["./app/__types__/index.ts"],
"~utils": ["./app/__utils__/index.ts"],
"~components": ["./app/components/index.ts"],
"~contexts": ["./app/contexts/index.ts"],
"~hooks": ["./app/hooks/index.ts"],
"~routes/*": ["./app/routes/*"],
"~styles/*": ["./app/styles/*"]
},
"skipLibCheck": true,
// Remix takes care of building everything in `remix build`.
"noEmit": true
}
}