-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
31 lines (31 loc) · 906 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
{
"compilerOptions": {
"baseUrl": "src",
"paths": {
"@/*": ["*"],
"@assets/*": ["/assets/*"],
"@components/*": ["components/*"],
"@routes/*": ["routes/*"],
"@utils/*": ["utils/*"],
"@services/*": ["services/*"],
"@styles/*": ["styles/*"],
"@types/*": ["types/*"],
"@pages/*": ["pages/*"]
},
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react",
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"resolveJsonModule": true,
"types": ["jest", "vite-plugin-svgr/client"],
"outDir": "dist"
},
"include": ["src/**/*", "svg.d.ts", "setupTests.ts", "babel.config.js", "jest.config.js"],
"exclude": ["node_modules"]
}