Skip to content

Commit

Permalink
chore: 스키마 폴더 경로를 설정파일에 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
baechu50 committed Dec 3, 2024
1 parent 7106cc7 commit e45f946
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions FE/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@

"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
"@/*": ["./src/*"],
"@schemas/*": ["../schemas/*"]
}
},
"include": ["src/**/*", "vite.config.ts"],
"include": ["src/**/*", "vite.config.ts", "../schemas/**/*"],
"exclude": ["node_modules", "dist"]
}
1 change: 1 addition & 0 deletions FE/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export default defineConfig({
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
'@schemas': path.resolve(__dirname, '../schemas'),
},
},
optimizeDeps: {
Expand Down

0 comments on commit e45f946

Please sign in to comment.