cbb96f3e by McLemore

fix: 指定fsevents版本号为1.2.9

1 parent 9b7b3fb4
......@@ -2,6 +2,8 @@
### 使用方法
### 依赖基础库版本
### 开始开发
1. 本地执行`npm run dev`
2. 使用开发者工具导入`demo`目录下的工程
......
......@@ -13,6 +13,7 @@
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"fsevents": "1.2.9",
"gulp": "^4.0.2",
"gulp-less": "^4.0.1",
"gulp-rename": "^2.0.0",
......
{
"compilerOptions": {
"strictNullChecks": true,
"noImplicitAny": true,
"module": "CommonJS",
"allowJs": false,
"experimentalDecorators": true,
"noImplicitReturns": true,
"alwaysStrict": true,
"inlineSourceMap": true,
"inlineSources": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"pretty": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"strict": true,
"typeRoots": [
"./node_modules/miniprogram-api-typings"
],
"lib": ["ES6", "ES7"],
"target": "es2017",
"module": "CommonJS"
"lib": ["ES6", "ES7", "ESNext"],
"target": "es2017"
}
}
\ No newline at end of file
}
......