Skip to content

Commit

Permalink
chore: fixup tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewlilley committed Dec 22, 2022
1 parent 5b51991 commit 8bd27c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
9 changes: 6 additions & 3 deletions packages/config/typescript/nextjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,25 @@
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"declaration": false,
"declarationMap": false,
"skipLibCheck": true,
"strict": false,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
]
},
"include": ["src", "next-env.d.ts"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}
4 changes: 0 additions & 4 deletions packages/config/typescript/node16.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,5 @@
"lib": ["ES2021"],
"module": "commonjs",
"target": "ES2021",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}

0 comments on commit 8bd27c3

Please sign in to comment.