fix: 指定fsevents版本号为1.2.9
Showing
3 changed files
with
22 additions
and
3 deletions
| ... | @@ -13,6 +13,7 @@ | ... | @@ -13,6 +13,7 @@ |
| 13 | "eslint": "^6.7.2", | 13 | "eslint": "^6.7.2", |
| 14 | "eslint-config-airbnb-base": "^14.0.0", | 14 | "eslint-config-airbnb-base": "^14.0.0", |
| 15 | "eslint-plugin-import": "^2.19.1", | 15 | "eslint-plugin-import": "^2.19.1", |
| 16 | "fsevents": "1.2.9", | ||
| 16 | "gulp": "^4.0.2", | 17 | "gulp": "^4.0.2", |
| 17 | "gulp-less": "^4.0.1", | 18 | "gulp-less": "^4.0.1", |
| 18 | "gulp-rename": "^2.0.0", | 19 | "gulp-rename": "^2.0.0", | ... | ... |
| 1 | { | 1 | { |
| 2 | "compilerOptions": { | 2 | "compilerOptions": { |
| 3 | "strictNullChecks": true, | ||
| 4 | "noImplicitAny": true, | ||
| 5 | "module": "CommonJS", | ||
| 6 | "allowJs": false, | ||
| 7 | "experimentalDecorators": true, | ||
| 8 | "noImplicitReturns": true, | ||
| 9 | "alwaysStrict": true, | ||
| 10 | "inlineSourceMap": true, | ||
| 11 | "inlineSources": true, | ||
| 12 | "noFallthroughCasesInSwitch": true, | ||
| 13 | "noUnusedLocals": true, | ||
| 14 | "noUnusedParameters": true, | ||
| 15 | "removeComments": true, | ||
| 16 | "pretty": true, | ||
| 17 | "strictPropertyInitialization": true, | ||
| 18 | "noImplicitThis": true, | ||
| 19 | "strict": true, | ||
| 3 | "typeRoots": [ | 20 | "typeRoots": [ |
| 4 | "./node_modules/miniprogram-api-typings" | 21 | "./node_modules/miniprogram-api-typings" |
| 5 | ], | 22 | ], |
| 6 | "lib": ["ES6", "ES7"], | 23 | "lib": ["ES6", "ES7", "ESNext"], |
| 7 | "target": "es2017", | 24 | "target": "es2017" |
| 8 | "module": "CommonJS" | ||
| 9 | } | 25 | } |
| 10 | } | 26 | } | ... | ... |
-
Please register or sign in to post a comment