-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
53 lines (50 loc) · 1.55 KB
/
tsconfig.json
File metadata and controls
53 lines (50 loc) · 1.55 KB
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
53
{
"compilerOptions": {
"target": "ES2024",
"useDefineForClassFields": true,
"module": "ESNext",
"skipLibCheck": true,
"incremental": true,
"outDir": "./dist",
"types": ["vite-plugin-svgr/client", "node"],
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
/* Paths */
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@app/*": ["./app/*"],
"@assets/*": ["./src/assets/*"],
"@atoms/*": ["./src/components/atoms/*"],
"@molecules/*": ["./src/components/molecules/*"],
"@organisms/*": ["./src/components/organisms/*"],
"@templates/*": ["./src/components/templates/*"],
"@config/*": ["./src/config/*"],
"@services/*": ["./src/services/*"],
"@hooks/*": ["src/hooks/*"],
"@models/*": ["src/models/*"],
"@store/*": ["./src/store/*"],
"@mocks/*": ["./src/mocks/*"],
"@pages/*": ["./src/pages/*"],
"@styles/*": ["./src/styles/*"],
"@tests/*": ["./src/tests/*"],
"@constants/*": ["./src/utils/constants/*"],
"@helpers/*": ["./src/utils/helpers/*"],
"@functions/*": ["./src/utils/functions/*"]
}
},
"include": ["src"],
"exclude": ["src/mocks/*"],
"references": [{ "path": "./tsconfig.node.json" }]
}