Skip to content

Commit

Permalink
fix(types): playground/tsconfig to extend from playground's build (.n…
Browse files Browse the repository at this point in the history
…uxt/tsconfig.json)
  • Loading branch information
wypratama committed Apr 16, 2023
1 parent 646f1d6 commit ce3602a
Showing 1 changed file with 3 additions and 118 deletions.
121 changes: 3 additions & 118 deletions playground/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,119 +1,4 @@
{
"compilerOptions": {
"jsx": "preserve",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"skipLibCheck": true,
"strict": true,
"allowJs": true,
"noEmit": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"types": [
"node"
],
"baseUrl": ".",
"paths": {
"~~": [
"."
],
"~~/*": [
"./*"
],
"@@": [
"."
],
"@@/*": [
"./*"
],
"~": [
"."
],
"~/*": [
"./*"
],
"@": [
"."
],
"@/*": [
"./*"
],
"assets": [
"assets"
],
"public": [
"public"
],
"public/*": [
"public/*"
],
"pinceau/runtime": [
"../src/runtime"
],
"pinceau": [
"../src/index"
],
"#app": [
"./node_modules/.pnpm/[email protected]/node_modules/nuxt/dist/app"
],
"#app/*": [
"./node_modules/.pnpm/[email protected]/node_modules/nuxt/dist/app/*"
],
"vue-demi": [
"./node_modules/.pnpm/[email protected]/node_modules/nuxt/dist/app/compat/vue-demi"
],
"#color-mode-options": [
"./.nuxt/color-mode-options"
],
"#nuxt-component-meta": [
"./.nuxt/component-meta.mjs"
],
"#nuxt-component-meta/types": [
"./.nuxt/component-meta.d.ts"
],
"#head": [
"./node_modules/.pnpm/[email protected]/node_modules/nuxt/dist/head/runtime"
],
"#head/*": [
"./node_modules/.pnpm/[email protected]/node_modules/nuxt/dist/head/runtime/*"
],
"#imports": [
"./.nuxt/imports"
],
"#build": [
"./.nuxt"
],
"#build/*": [
"./.nuxt/*"
],
"#pinceau/utils": [
"/Users/yaelguilloux/Code/sandbox/pinceau/playground/.nuxt/pinceau/utils.ts"
],
"#pinceau/theme": [
"/Users/yaelguilloux/Code/sandbox/pinceau/playground/.nuxt/pinceau/index.ts"
],
"#pinceau/schema": [
"/Users/yaelguilloux/Code/sandbox/pinceau/playground/.nuxt/pinceau/schema.ts"
],
"#pinceau/definitions": [
"/Users/yaelguilloux/Code/sandbox/pinceau/playground/.nuxt/pinceau/schema.ts"
],
"#components": [
"./.nuxt/components"
]
}
},
"include": [
"./.nuxt/nuxt.d.ts",
"../**/*"
],
"exclude": [
"./dist"
],
"vueCompilerOptions": {
"plugins": [
"../dist/volar.cjs"
]
}
}
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json"
}

0 comments on commit ce3602a

Please sign in to comment.