Skip to content

Commit

Permalink
MIGRATION - reverted ts config
Browse files Browse the repository at this point in the history
  • Loading branch information
vladokuskov committed Jun 7, 2024
1 parent 54f8a11 commit bad347d
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"target": "ES6",
"allowJs": true,
"skipLibCheck": true,
Expand All @@ -14,9 +18,21 @@
"jsx": "preserve",
"incremental": true,
"paths": {
"@/*": ["./*"]
}
"@/*": [
"./*"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": ["**/*.ts", "**/*.vue",],
"exclude": ["node_modules"]
"include": [
"**/*.ts",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}

0 comments on commit bad347d

Please sign in to comment.