Skip to content

Commit

Permalink
🔧 Group configuration options for better clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
injoonH committed Jun 3, 2024
1 parent 6bcef87 commit 4622e50
Showing 1 changed file with 35 additions and 17 deletions.
52 changes: 35 additions & 17 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,44 @@
{
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"],
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
/* Type Checking */
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"strict": true,

/* Modules */
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"@/*": ["./src/*"]
},
"resolveJsonModule": true,

/* Emit */
"noEmit": true,

/* JavaScript Support */
"allowJs": true,

/* Editor Support */
"plugins": [{ "name": "next" }],

/* Interop Constraints */
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,

/* Language and Environment */
"jsx": "preserve",
"lib": ["DOM", "DOM.Iterable", "ESNext"],

/* Projects */
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]

/*Completeness */
"skipLibCheck": true
}
}

0 comments on commit 4622e50

Please sign in to comment.