Skip to content

Commit

Permalink
feat: update tsconfig to include docs/.vitepress directory
Browse files Browse the repository at this point in the history
  • Loading branch information
DDDDD12138 committed Nov 20, 2024
1 parent 3f1a4c6 commit 9514dd4
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,22 @@
"target": "es2016",
"outDir": "dist",
"module": "esnext",
"lib": [
"DOM",
"ES2015",
"ES2017"
],
"lib": ["DOM", "ES2015", "ES2017"],
"strict": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"moduleResolution": "node",
"esModuleInterop": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"noEmit": true,
"noUnusedLocals": true,
"baseUrl": ".",
"paths": {
"vue": [
"node_modules/vue/dist/vue.esm.js"
]
"vue": ["node_modules/vue/dist/vue.esm.js"]
}
},
"include": [
"tests",
"src",
"types"
]
"include": ["tests", "src", "types", "docs/.vitepress/**/*"]
}

0 comments on commit 9514dd4

Please sign in to comment.