We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent febdb50 commit 45b9517Copy full SHA for 45b9517
1 file changed
tsconfig.json
@@ -1,8 +1,22 @@
1
{
2
- "extends": "./.nuxt/tsconfig.json",
3
- "references": [
4
- {
5
- "path": "./playground/.nuxt/tsconfig.server.json"
6
- }
7
- ]
+ "compilerOptions": {
+ "target": "ESNext",
+ "jsx": "preserve",
+ "jsxImportSource": "vue",
+ "useDefineForClassFields": true,
+ "module": "ESNext",
8
+ "moduleResolution": "Bundler",
9
+ "resolveJsonModule": true,
10
+ "types": [],
11
+ "allowJs": true,
12
+ "strict": true,
13
+ "noImplicitThis": true,
14
+ "noEmit": true,
15
+ "allowSyntheticDefaultImports": true,
16
+ "esModuleInterop": true,
17
+ "forceConsistentCasingInFileNames": true,
18
+ "isolatedModules": true,
19
+ "verbatimModuleSyntax": true,
20
+ "skipLibCheck": true
21
+ }
22
}
0 commit comments