Skip to content

Commit e9ba320

Browse files
committed
fix
1 parent 7eb51ff commit e9ba320

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

apps/dashboard/tsconfig.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"compilerOptions": {
33
"target": "ES2017",
4-
"lib": ["dom", "dom.iterable", "esnext"],
4+
"lib": [
5+
"dom",
6+
"dom.iterable",
7+
"esnext"
8+
],
59
"allowJs": true,
610
"skipLibCheck": true,
711
"strict": true,
@@ -11,16 +15,20 @@
1115
"moduleResolution": "bundler",
1216
"resolveJsonModule": true,
1317
"isolatedModules": true,
14-
"jsx": "preserve",
18+
"jsx": "react-jsx",
1519
"incremental": true,
1620
"plugins": [
1721
{
1822
"name": "next"
1923
}
2024
],
2125
"paths": {
22-
"@/*": ["./*"],
23-
"~/*": ["../dashboard"]
26+
"@/*": [
27+
"./*"
28+
],
29+
"~/*": [
30+
"../dashboard"
31+
]
2432
},
2533
"strictNullChecks": true
2634
},
@@ -29,7 +37,9 @@
2937
"types/**/*.ts",
3038
"**/*.ts",
3139
"**/*.tsx",
32-
".next/types/**/*.ts"
40+
".next/types/**/*.ts",
41+
".next\\dev/types/**/*.ts",
42+
".next\\dev/types/**/*.ts"
3343
],
3444
"exclude": [
3545
"node_modules",

0 commit comments

Comments
 (0)