-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d91f1ad
commit 0d12b50
Showing
6 changed files
with
38 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
package-lock.json | ||
npm-shrinkwrap.json | ||
|
||
/build | ||
/coverage | ||
/docs/_build | ||
node_modules | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
environment: | ||
nodejs_version: "12" | ||
nodejs_version: '12' | ||
install: | ||
- ps: Install-Product node 12 | ||
- "npm -g install npm@6" | ||
- 'npm -g install npm@6' | ||
- "set PATH=%APPDATA%\\npm;%PATH%" | ||
- "npm install" | ||
- 'npm install' | ||
cache: | ||
- "node_modules -> package.json" | ||
- 'node_modules -> package.json' | ||
- "%APPDATA%\\npm-cache -> package.json" | ||
build: off | ||
test_script: | ||
- "node --version" | ||
- "npm --version" | ||
- "npm test" | ||
- 'node --version' | ||
- 'npm --version' | ||
- 'npm run build' | ||
- 'npm test' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"compileOnSave": true, | ||
"compilerOptions": { | ||
"module": "commonjs", | ||
"target": "es2017", | ||
"lib": ["es2017"], | ||
"typeRoots": ["node_modules/@types"], | ||
"rootDir": "./lib", | ||
"outDir": "./build", | ||
"moduleResolution": "node", | ||
"esModuleInterop": true, | ||
"allowJs": true, | ||
"allowSyntheticDefaultImports": true | ||
}, | ||
"include": ["./lib/**/*.ts", "./lib/**/*.js"], | ||
"exclude": ["node_modules", "build"] | ||
} |