Fix comments

This commit is contained in:
2023-11-08 17:46:26 +07:00
parent a99d81a411
commit 8fce206f7f
35 changed files with 471 additions and 342 deletions
+15 -1
View File
@@ -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" }]