Skip to content

Commit

Permalink
update: rollback to original tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
clostao committed Nov 6, 2024
1 parent 38b6ce7 commit 6daf452
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions frontend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "CommonJS",
"moduleResolution": "Node",
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"types": ["node", "next", "next/types/global"],
"types": ["next", "node"],
"plugins": [
{
"name": "next"
Expand All @@ -22,6 +22,12 @@
"@/*": ["./src/*"]
}
},
"include": ["**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "next-auth.d.ts"],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"next-auth.d.ts"
],
"exclude": ["node_modules"]
}

0 comments on commit 6daf452

Please sign in to comment.