-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtsconfig.json
41 lines (41 loc) · 934 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
35
36
37
38
39
40
41
{
"compilerOptions": {
"baseUrl": ".",
"jsx": "react-jsx",
"module": "es6",
"target": "ES2021",
"moduleResolution": "node",
"paths": {
"@clients/*": ["./src/clients/*"],
"@hooks": ["./src/hooks"],
"@services/*": ["./src/services/*"],
"Components/*": ["./src/components/*"],
"Mocks/*": ["./mocks/*"],
"Mocks": ["./mocks"],
"Styles": ["./styles"],
"Types/*": ["./src/types/*"]
},
"alwaysStrict": false,
"noImplicitAny": false,
"skipLibCheck": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"allowJs": true,
"checkJs": true,
"isolatedModules": true,
"noEmit": true,
"resolveJsonModule": true,
"types": ["vitest/globals"]
},
"exclude": ["node_modules", "dist"],
"include": [
".storybook/**/*",
"loader.tsx",
"mocks/**/*",
"sandbox.ts",
"src/**/*",
"stories/**/*",
"styles/**/*",
"tests/**/*"
]
}