-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
41 lines (38 loc) · 1.13 KB
/
tsconfig.node.json
File metadata and controls
41 lines (38 loc) · 1.13 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
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2023", "DOM", "DOM.Iterable", "webworker"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@ts/*": ["./src/ts/*"],
"@base/*": ["./src/base/*"],
"@utils/*": ["./src/utils/*"],
"@hooks/*": ["./src/hooks/*"],
"@pages/*": ["./src/pages/*"],
"@router/*": ["./src/router/*"],
"@layout/*": ["./src/layout/*"],
"@common/*": ["./src/common/*"],
"@recoils/*": ["./src/recoils/*"],
"@constants/*": ["./src/constants/*"],
"@controllers/*": ["./src/controllers/*"],
"@components/*": ["./src/components/*"],
"@styles/*": ["./src/styles/*"],
"@assets/*": ["./src/assets/*"],
"@config/*": ["./src/config/*"]
}
},
"include": ["src", "vite.config.ts"]
}