Skip to content

Commit

Permalink
chore: fix tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
pure-js committed Nov 7, 2024
1 parent d66a079 commit 11a0970
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "auto-manufacturers",
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
Expand Down
9 changes: 5 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"forceConsistentCasingInFileNames": true,
"plugins": [
{
"name": "next"
Expand Down

0 comments on commit 11a0970

Please sign in to comment.