Skip to content

Commit

Permalink
chore: update pkg and some config ant-design#474
Browse files Browse the repository at this point in the history
  • Loading branch information
tangjinzhou committed Aug 7, 2021
1 parent 110eb10 commit 527e24d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
1 change: 1 addition & 0 deletions packages/icons-vue/.prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"trailingComma": "all",
"printWidth": 100,
"proseWrap": "never",
"arrowParens": "avoid",
"overrides": [
{
"files": ".prettierrc",
Expand Down
16 changes: 8 additions & 8 deletions packages/icons-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,33 +27,33 @@
"vue": ">=3.0.3"
},
"devDependencies": {
"@vue/babel-plugin-jsx": "^1.0.0",
"@babel/runtime": "^7.11.2",
"@types/jest": "^24.0.17",
"@types/node": "^13.13.15",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"@vue/babel-plugin-jsx": "^1.0.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-eslint": "^5.0.0-0",
"@vue/cli-plugin-typescript": "^5.0.0-0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.3",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-beta.2",
"cross-env": "^5.2.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.0.0",
"jest": "^25.4.0",
"jest": "^26.0.0",
"jest-serializer-vue": "^2.0.2",
"prettier": "^1.19.1",
"ts-node": "^9.1.1",
"typescript": "~4.1.3",
"ts-node": "^10.1.0",
"typescript": "^4.2.0",
"vc-tools": "^3.0.0",
"vue": "^3.0.3",
"vue-jest": "^5.0.0-alpha.3"
"vue-jest": "^5.0.0-alpha.10"
},
"dependencies": {
"@ant-design/colors": "^5.0.0",
Expand Down
9 changes: 8 additions & 1 deletion packages/icons-vue/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@
"target": "esnext",
"moduleResolution": "node",
"jsx": "preserve",
"esModuleInterop": true
"esModuleInterop": true,
"strictNullChecks": false,
"strict": true,
"experimentalDecorators": true,
"noUnusedParameters": true,
"noImplicitAny": false,
"lib": ["dom", "es2017"],
"skipLibCheck": true
},
"include": ["./src", "./typings/"],
"typings": "./typings/index.d.ts",
Expand Down

0 comments on commit 527e24d

Please sign in to comment.