Skip to content

Commit

Permalink
chore: tsconfig 업데이트 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
hyesungoh committed Oct 26, 2022
1 parent 154833f commit fc6bcae
Showing 1 changed file with 25 additions and 5 deletions.
30 changes: 25 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -18,9 +22,25 @@
"incremental": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
"@/*": [
"src/*"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "@types"],
"exclude": ["node_modules", "cypress"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"@types",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
"cypress"
]
}

0 comments on commit fc6bcae

Please sign in to comment.