Skip to content

Commit

Permalink
Update tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
o-az authored Sep 17, 2023
1 parent 8a03575 commit 1426408
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions apps/web/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
{
"extends": ["tsconfig/base.json"],
"compilerOptions": {
"noEmit": true,
"jsx": "preserve",
"incremental": true,
"moduleResolution": "Node",
"plugins": [
{
"name": "next"
Expand All @@ -13,11 +11,21 @@
"paths": {
"#/*": ["./src/*"]
},
"noEmit": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true
"isolatedModules": true,
"strictNullChecks": true,
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"module": "ESNext",
"moduleResolution": "Node"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"files": [".eslintrc.cjs", ".prettierrc.cjs", "environment.d.ts", "next.config.mjs"],
"exclude": ["node_modules"]
}
}

0 comments on commit 1426408

Please sign in to comment.