Skip to content

Commit

Permalink
fix: correct TS config for env-nextjs work
Browse files Browse the repository at this point in the history
  • Loading branch information
SecondThundeR committed Feb 25, 2024
1 parent 5eb661d commit 552ff6a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,24 @@
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"noUncheckedIndexedAccess": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
},
"@/*": ["./src/*"]
}
},
"include": [
".eslintrc.cjs",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.cjs",
"**/*.mjs",
"**/*.mjs"
],
"exclude": ["node_modules"],
"exclude": ["node_modules"]
}

0 comments on commit 552ff6a

Please sign in to comment.