diff --git a/package/.eslintrc.js b/package/.eslintrc.js index 390d1f21..1aba6a9a 100644 --- a/package/.eslintrc.js +++ b/package/.eslintrc.js @@ -4,4 +4,5 @@ module.exports = { 'vue/no-setup-props-destructure': 0, }, extends: ['../.eslintrc.js'], + ignorePatterns: ['!**/*'], } diff --git a/package/package.json b/package/package.json index b5b14482..4b33de7e 100644 --- a/package/package.json +++ b/package/package.json @@ -24,7 +24,7 @@ "scripts": { "prepare": "ts-patch install -s", "build": "vite build", - "types": "yarn prepare && vue-tsc --declaration --emitDeclarationOnly && tsc -p tsconfig.build.json && shx rm -rf tmp && yarn lint:dist", + "types": "yarn prepare && vue-tsc --declaration --emitDeclarationOnly && tsc -p tsconfig.build.json && shx rm -rf tmp", "typedoc": "typedoc --tsconfig tsconfig.docs.json dist/index.d.ts --out typedocs", "theme": "postcss src/style.css -o dist/style.css && postcss src/theme-default.css -o dist/theme-default.css", "lint": "eslint --ext \".js,.jsx,.ts,.tsx\" --fix --ignore-path ../.gitignore .",