Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
templates
/
mui-template
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
cbb96f3e
authored
2020-02-08 11:01:02 +0800
by
McLemore
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix: 指定fsevents版本号为1.2.9
1 parent
9b7b3fb4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
4 deletions
boilerplate/README.md
boilerplate/package.json
boilerplate/tsconfig.json
boilerplate/README.md
View file @
cbb96f3
...
...
@@ -2,6 +2,8 @@
### 使用方法
### 依赖基础库版本
### 开始开发
1.
本地执行
`npm run dev`
2.
使用开发者工具导入
`demo`
目录下的工程
...
...
boilerplate/package.json
View file @
cbb96f3
...
...
@@ -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"
,
...
...
boilerplate/tsconfig.json
View file @
cbb96f3
{
"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
}
...
...
Please
register
or
sign in
to post a comment