Skip to content

Commit

Permalink
remove types from compiled files
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper committed Nov 11, 2016
1 parent b0ee4c8 commit abd84f0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "toastr-ng2",
"version": "1.5.5",
"version": "1.5.6",
"description": "Toastr for Angular 2",
"main": "./toastr.js",
"typings": "./toastr.d.ts",
Expand Down
23 changes: 9 additions & 14 deletions src/lib/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,20 @@
{
"compilerOptions": {
"declaration": true,
"target": "es5",
"module": "commonjs",
"lib": ["es6", "dom"],
"moduleResolution": "node",
"outDir": "../../deploy",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"lib": ["es6", "dom"],
"mapRoot": "./",
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"typeRoots": [
"../../node_modules/@types/"
]
"outDir": "../../deploy",
"sourceMap": true,
"target": "es5",
"types": []
},
"angularCompilerOptions": {
"genDir": "../../deploy"
},
"exclude": [
"node_modules"
]
}
}

0 comments on commit abd84f0

Please sign in to comment.