Skip to content

Commit

Permalink
bump target
Browse files Browse the repository at this point in the history
  • Loading branch information
williamboman committed Dec 20, 2024
1 parent ba329b3 commit 8c4381f
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
{
"compilerOptions": {
"paths": {
"@/*": ["./*"]
"@/*": [
"./*"
]
},
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
Expand All @@ -16,9 +22,19 @@
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"typeRoots": ["node_modules/@types", "./typings"]
"typeRoots": [
"node_modules/@types",
"./typings"
],
"target": "ES2018"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
],
"extends": "@tsconfig/strictest/tsconfig.json"
}

0 comments on commit 8c4381f

Please sign in to comment.