Skip to content

Commit

Permalink
chore(tsconfig): temporary workaround for tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Tahul committed Feb 8, 2024
1 parent febdb50 commit 45b9517
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
{
"extends": "./.nuxt/tsconfig.json",
"references": [
{
"path": "./playground/.nuxt/tsconfig.server.json"
}
]
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"jsxImportSource": "vue",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"types": [],
"allowJs": true,
"strict": true,
"noImplicitThis": true,
"noEmit": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
}
}

0 comments on commit 45b9517

Please sign in to comment.