Skip to content

Commit

Permalink
fix compiler options
Browse files Browse the repository at this point in the history
  • Loading branch information
philipjames44 committed Feb 27, 2024
1 parent d62d2ad commit f2786db
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"compilerOptions": {
"jsx": "preserve",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -11,15 +16,17 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*", "./styles/*"]
"@/*": [
"./src/*",
"./styles/*"
]
}
},
"include": [
Expand All @@ -29,5 +36,7 @@
".next/types/**/*.ts",
"styles/styles.d.ts"
],
"exclude": ["node_modules"]
"exclude": [
"node_modules"
]
}

0 comments on commit f2786db

Please sign in to comment.