-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
tsconfig.json
32 lines (32 loc) · 1.03 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
{
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"jsx": "react-jsx",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"paths": {
"~/components/*": ["src/components/*"],
"~/context/*": ["src/context/*"],
"~/hooks/*": ["src/hooks/*"],
"~/routes/*": ["src/routes/*"],
"~/styles/*": ["src/styles/*"],
"~/test-utils/*": ["src/test-utils/*"],
"~/transformers/*": ["src/transformers/*"],
"~/types/*": ["src/types/*"],
"~/utils/*": ["src/utils/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ESNext"
},
"include": ["env.d.ts", "**/*.js", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}