Skip to content

Commit

Permalink
docs: playground tsconfig isse
Browse files Browse the repository at this point in the history
  • Loading branch information
chakAs3 committed Oct 1, 2023
1 parent bc4ea90 commit 71e860d
Showing 1 changed file with 100 additions and 3 deletions.
103 changes: 100 additions & 3 deletions playground/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,101 @@
// Generated by nuxi
{
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json"
}
"compilerOptions": {
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"skipLibCheck": true,
"isolatedModules": true,
"useDefineForClassFields": true,
"strict": true,
"noImplicitThis": true,
"esModuleInterop": true,
"allowJs": true,
"noEmit": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"paths": {
"~": [
".."
],
"~/*": [
"../*"
],
"@": [
".."
],
"@/*": [
"../*"
],
"~~": [
".."
],
"~~/*": [
"../*"
],
"@@": [
".."
],
"@@/*": [
"../*"
],
"assets": [
"../assets"
],
"public": [
"../public"
],
"public/*": [
"../public/*"
],
"#app": [
"../../node_modules/.pnpm/nuxt@3.7.4_eslint@8.50.0_rollup@3.29.4_typescript@5.2.2/node_modules/nuxt/dist/app"
],
"#app/*": [
"../../node_modules/.pnpm/nuxt@3.7.4_eslint@8.50.0_rollup@3.29.4_typescript@5.2.2/node_modules/nuxt/dist/app/*"
],
"vue-demi": [
"../../node_modules/.pnpm/nuxt@3.7.4_eslint@8.50.0_rollup@3.29.4_typescript@5.2.2/node_modules/nuxt/dist/app/compat/vue-demi"
],
"#vue-router": [
"./vue-router"
],
"#imports": [
"./imports"
],
"#build": [
"."
],
"#build/*": [
"./*"
],
"#components": [
"./components"
]
}
},
"include": [
"./nuxt.d.ts",
"../**/*",
"../../**/*",
"../../../../../../../de/runtime",
"../../node_modules/.pnpm/@nuxt+devtools@0.8.2_nuxt@3.7.4_rollup@3.29.4_vite@4.4.9/node_modules/@nuxt/devtools/runtime",
"../../node_modules/.pnpm/@nuxt+telemetry@2.5.0_rollup@3.29.4/node_modules/@nuxt/telemetry/runtime",
"..",
"../../node_modules/.pnpm/nuxt@3.7.4_eslint@8.50.0_rollup@3.29.4_typescript@5.2.2/node_modules/nuxt/dist/app",
"../../node_modules/.pnpm/nuxt@3.7.4_eslint@8.50.0_rollup@3.29.4_typescript@5.2.2/node_modules/nuxt/dist/app/compat/vue-demi"
],
"exclude": [
"../node_modules",
"../../node_modules",
"../../node_modules/.pnpm/nuxt@3.7.4_eslint@8.50.0_rollup@3.29.4_typescript@5.2.2/node_modules/nuxt/node_modules",
"../../../../../../../de/runtime/server",
"../../node_modules/.pnpm/@nuxt+devtools@0.8.2_nuxt@3.7.4_rollup@3.29.4_vite@4.4.9/node_modules/@nuxt/devtools/runtime/server",
"../../node_modules/.pnpm/@nuxt+telemetry@2.5.0_rollup@3.29.4/node_modules/@nuxt/telemetry/runtime/server",
"../dist",
"../.output"
]
}

0 comments on commit 71e860d

Please sign in to comment.