Skip to content

Commit 45b9517

Browse files
committed
chore(tsconfig): temporary workaround for tsconfig
1 parent febdb50 commit 45b9517

1 file changed

Lines changed: 20 additions & 6 deletions

File tree

tsconfig.json

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
11
{
2-
"extends": "./.nuxt/tsconfig.json",
3-
"references": [
4-
{
5-
"path": "./playground/.nuxt/tsconfig.server.json"
6-
}
7-
]
2+
"compilerOptions": {
3+
"target": "ESNext",
4+
"jsx": "preserve",
5+
"jsxImportSource": "vue",
6+
"useDefineForClassFields": true,
7+
"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+
}
822
}

0 commit comments

Comments
 (0)