-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (33 loc) · 968 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
32
33
34
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"noEmit": true,
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"baseUrl": "./",
"paths": {
"@utils/*": ["./src/utils/*"],
"@utils": ["./src/utils"],
"@components/*": ["./src/components/*"],
"@components": ["./src/components"],
"@containers/*": ["./src/containers/*"],
"@containers": ["./src/containers"],
"@styles/*": ["./src/styles/*"],
"@styles": ["./src/styles"],
"@assets/*": ["./src/assets/*"],
"@assets": ["./src/assets"],
"@hooks/*": ["./src/hooks/*"],
"@hooks": ["./src/hooks"],
"react": ["./node_modules/preact/compat"],
"react-dom": ["./node_modules/preact/compat"]
},
"skipLibCheck": true
, "strictPropertyInitialization": false
},
"include": ["src/**/*"],
}