refactor: 상대경로를 @ 시작 절대경로로

This commit is contained in:
2021-12-10 22:34:14 +09:00
parent bd42042a61
commit 975f77e907
68 changed files with 395 additions and 365 deletions
+7 -3
View File
@@ -45,9 +45,13 @@
/* Module Resolution Options */
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
//"baseUrl": "./hwe/ts", /* Base directory to resolve non-absolute module names. */
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
"rootDirs": ["./hwe/ts"], /* List of root folders whose combined content represents the structure of the project at runtime. */
"baseUrl": "./hwe/", /* Base directory to resolve non-absolute module names. */
"paths": {
"@/*": ["./ts/*"],
"@scss/*": ["./scss/*"],
"@util/*": ["./ts/util/*"],
}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
//"rootDirs": ["./hwe/ts"], /* List of root folders whose combined content represents the structure of the project at runtime. */
//"typeRoots": ["./typings"], /* List of folders to include type definitions from. */
//"types": ["ts/common_path.d.ts"], /* Type declaration files to be included in compilation. */
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */