Skip to content

Commit 2237f94

Browse files
committed
chore: fixed github action
1 parent 5ba793d commit 2237f94

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

packages/nuxt/tsconfig.json

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
{
22
"extends": "./playground/.nuxt/tsconfig.json",
33
"compilerOptions": {
4-
"moduleResolution": "node"
4+
"module": "ESNext",
5+
"target": "ESNext",
6+
"lib": [
7+
"DOM",
8+
"ESNext"
9+
],
10+
"strict": true,
11+
"esModuleInterop": true,
12+
"jsx": "preserve",
13+
"incremental": false,
14+
"skipLibCheck": true,
15+
"moduleResolution": "node",
16+
"resolveJsonModule": true,
17+
"noUnusedLocals": true,
18+
"strictNullChecks": true,
19+
"forceConsistentCasingInFileNames": true
520
}
6-
}
21+
}

0 commit comments

Comments
 (0)