-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtsconfig.json
52 lines (52 loc) · 1.65 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~apollo": ["src/apollo"],
"~apollo/*": ["src/apollo/*"],
"~auth": ["src/auth"],
"~auth/*": ["src/auth/*"],
"~common/*": ["src/components/common/*"],
"~constants": ["src/constants"],
"~constants/*": ["src/constants/*"],
"~context": ["src/context"],
"~context/*": ["src/context/*"],
"~frame/*": ["src/components/frame/*"],
"~gql": ["src/graphql/generated.ts"],
"~hooks": ["src/hooks"],
"~hooks/*": ["src/hooks/*"],
"~icons/*": ["src/components/icons/*"],
"~images/*": ["src/images/*"],
"~redux": ["src/redux"],
"~redux/*": ["src/redux/*"],
"~routes": ["src/routes"],
"~routes/*": ["src/routes/*"],
"~shared/*": ["src/components/shared/*"],
"~state/*": ["src/state/*"],
"~styles/*": ["src/styles/shared/*"],
"~transformers": ["src/transformers"],
"~transformers/*": ["src/transformers/*"],
"~types": ["src/types"],
"~types/*": ["src/types/*"],
"~utils/*": ["src/utils/*"],
"~v5/*": ["src/components/v5/*"]
},
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"esModuleInterop": true,
"jsx": "react",
"lib": ["dom", "es2020"],
"module": "es2020",
"moduleResolution": "node",
"allowImportingTsExtensions": true,
"noEmit": true,
"noImplicitAny": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"target": "es2020",
"types": ["vite/client"]
},
"include": ["src", "playwright.config.ts", "playwright/**/*.ts"]
}