Skip to content

Commit e2480ac

Browse files
committed
Update tsconfig.json
1 parent 18d89a7 commit e2480ac

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

Diff for: tsconfig.json

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
{
22
"compilerOptions": {
3-
"target": "esnext",
4-
"module": "commonjs",
5-
"esModuleInterop": true,
6-
"forceConsistentCasingInFileNames": true,
7-
"strict": true,
3+
"target": "es5",
4+
"lib": ["dom", "dom.iterable", "esnext"],
5+
"allowJs": true,
86
"skipLibCheck": true,
97
"baseUrl": ".",
108
"paths": {
119
"@/components/*": ["components/*"],
12-
"@/layouts/*": ["layouts/*"],
10+
"@/pages/*": ["pages/*"],
11+
"@/app/*": ["app/*"],
1312
"@/lib/*": ["lib/*"],
1413
"@/styles/*": ["styles/*"]
1514
},
16-
"lib": ["dom", "dom.iterable", "esnext"],
17-
"allowJs": true,
15+
"strict": true,
16+
"forceConsistentCasingInFileNames": true,
1817
"noEmit": true,
19-
"incremental": true,
18+
"esModuleInterop": true,
19+
"module": "esnext",
2020
"moduleResolution": "node",
2121
"resolveJsonModule": true,
2222
"isolatedModules": true,
2323
"jsx": "preserve",
24+
"incremental": true,
2425
"plugins": [
2526
{
2627
"name": "next"

0 commit comments

Comments
 (0)