Skip to content

Commit

Permalink
fix(tsconfig): updated for assets
Browse files Browse the repository at this point in the history
  • Loading branch information
0xRowdy committed May 6, 2024
1 parent f995e08 commit 38d0720
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"target": "ESNext",
"target": "ESNext",
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -15,18 +15,19 @@
"incremental": true,
"plugins": [
{
"name": "next"
}
"name": "next",
},
],
"paths": {
"@/*": ["./*"],
"@/components/*": ["./components/*"],
"@/lib/*": ["./lib/*"],
"@/styles/*": ["./styles/*"],
"@/types/*": ["./types/*"],
"@/hooks/*": ["./hooks/*"],
"@/components/*": ["./components/*"],
"@/lib/*": ["./lib/*"],
"@/styles/*": ["./styles/*"],
"@/types/*": ["./types/*"],
"@/hooks/*": ["./hooks/*"],
"@/assets/*": ["./assets/*"],
},
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"exclude": ["node_modules"],
}

0 comments on commit 38d0720

Please sign in to comment.