Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Jun 10, 2019
0 parents commit 2d43b95
Show file tree
Hide file tree
Showing 17 changed files with 10,892 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .gitignore
@@ -0,0 +1,58 @@
### Node template
.DS_Store
# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules
.npmrc
*.log

# Typings
typings/

# Typescript
src/**/*.js
src/**/*.js.map
test/**/*.js
test/**/*.js.map

# Test
/coverage
/stdout
/stderr
/es6/
/lib/
/dts/
/.tmp
/.nyc_output/

# IDE
.vscode
.idea

# Project
public
27 changes: 27 additions & 0 deletions .nycrc
@@ -0,0 +1,27 @@
{
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts",
"node_modules",
"**/index.ts",
"**/interfaces/**",
"**/*.spec.ts",
"src/test/tools.js"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"extension": [
".ts"
],
"check-coverage": true,
"lines": 99,
"statements": 100,
"functions": 99,
"branches": 89,
"all": true
}

0 comments on commit 2d43b95

Please sign in to comment.