We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ba793d commit 2237f94Copy full SHA for 2237f94
packages/nuxt/tsconfig.json
@@ -1,6 +1,21 @@
1
{
2
"extends": "./playground/.nuxt/tsconfig.json",
3
"compilerOptions": {
4
- "moduleResolution": "node"
+ "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
20
}
-}
21
+}
0 commit comments