mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-22 13:38:51 +00:00
Fix comments
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||||
"module": "ESNext",
|
||||
"skipLibCheck": true,
|
||||
"types": ["node"],
|
||||
|
||||
/* Bundler mode */
|
||||
"moduleResolution": "bundler",
|
||||
@@ -18,7 +19,20 @@
|
||||
"strict": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"noFallthroughCasesInSwitch": true
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
|
||||
/* Alias */
|
||||
"paths": {
|
||||
"@service/*": ["./src/services/*"],
|
||||
"@constant/*": ["./src/constants/*"],
|
||||
"@hook/*": ["./src/hooks/*"],
|
||||
"@helper/*": ["./src/helpers/*"],
|
||||
"@context/*": ["./src/contexts/*"],
|
||||
"@component/*": ["./src/components/*"],
|
||||
"@commonStyle/*": ["./src/commons/styles/*"],
|
||||
"@type/*": ["./src/types/*"],
|
||||
"@page/*": ["./src/pages/*"]
|
||||
}
|
||||
},
|
||||
"include": ["src"],
|
||||
"references": [{ "path": "./tsconfig.node.json" }]
|
||||
|
||||
Reference in New Issue
Block a user