Skip to content
This repository was archived by the owner on Jul 14, 2022. It is now read-only.

Commit

Permalink
Fix tsconfig aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
orzechdev committed Jul 30, 2020
1 parent 7831c0f commit 626fc6a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
"target": "es6",
"noUnusedLocals": true,
"paths": {
"@temp/*": ["./src/*"],
"@app/*": ["./src/@next/*"],
"@components/*": ["./src/@next/components/*"],
"@components/atoms": ["./src/@next/components/atoms/index.ts"],
"@components/molecules": ["./src/@next/components/molecules/index.ts"],
Expand All @@ -25,7 +23,10 @@
"@hooks": ["./src/@next/hooks/index.ts"],
"@hooks/*": ["./src/@next/hooks/*"],
"@types": ["./src/@next/types/index.ts"],
"@locale/*": ["./locale/*"]
"@types/*": ["./src/@next/types/*"],
"@app/*": ["./src/@next/*"],
"@locale/*": ["./locale/*"],
"@temp/*": ["./src/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true
Expand Down

0 comments on commit 626fc6a

Please sign in to comment.