Skip to content

Commit

Permalink
sort tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
nahtnam committed Dec 16, 2024
1 parent 8a67d9b commit 3852f7c
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,30 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "bundler",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"paths": {
"@/*": ["./src/*"]
},
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ES2017"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"]
}

0 comments on commit 3852f7c

Please sign in to comment.