Skip to content

Commit

Permalink
Add npmignore file, remove unused tsconfig options
Browse files Browse the repository at this point in the history
  • Loading branch information
drublic committed May 26, 2020
1 parent 953df8b commit b1b9287
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
7 changes: 7 additions & 0 deletions .npmignore
@@ -0,0 +1,7 @@
.eslintignore
.eslintrc.js
.prettierrc.js
.travis.yml
jest.config.js
nodemon.json
tsconfig.json
11 changes: 3 additions & 8 deletions tsconfig.json
@@ -1,20 +1,15 @@
{
"compilerOptions": {
"allowJs": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"module": "CommonJS",
"module": "commonjs",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"outDir": "build/",
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"target": "ES5",
"target": "es2015",
"declaration": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "build"]
"include": ["src/**/*"]
}

0 comments on commit b1b9287

Please sign in to comment.