Skip to content

Commit

Permalink
feat: add noImplicitAny & strictNullChecks (#1409)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anmol-Baranwal authored Jul 31, 2023
1 parent b475a66 commit 13b473f
Showing 1 changed file with 5 additions and 14 deletions.
19 changes: 5 additions & 14 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -19,19 +15,14 @@
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"noImplicitAny": true,
"strictNullChecks": true,
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}

1 comment on commit 13b473f

@vercel
Copy link

@vercel vercel bot commented on 13b473f Jul 31, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.