-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 1 KB
/
Copy pathtsconfig.json
File metadata and controls
29 lines (29 loc) · 1 KB
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
{
"include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2019"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"moduleResolution": "node",
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"target": "ES2019",
"strict": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"],
"~constants": ["./app/__constants__/index.ts"],
"~models": ["./app/__models__/index.ts"],
"~utils": ["./app/__utils__/index.ts"],
"~routes/*": ["./app/routes/*"],
"~styles/*": ["./app/styles/*"],
"~components": ["./app/components/index.ts"],
"~hooks": ["./app/hooks/index.ts"],
"~public/*": ["./app/public/*"]
},
// Remix takes care of building everything in `remix build`.
"noEmit": true
}
}