Skip to content

Commit abd84f0

Browse files
committed
remove types from compiled files
1 parent b0ee4c8 commit abd84f0

File tree

2 files changed

+10
-15
lines changed

2 files changed

+10
-15
lines changed

src/lib/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "toastr-ng2",
3-
"version": "1.5.5",
3+
"version": "1.5.6",
44
"description": "Toastr for Angular 2",
55
"main": "./toastr.js",
66
"typings": "./toastr.d.ts",

src/lib/tsconfig.json

+9-14
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,20 @@
11
{
22
"compilerOptions": {
33
"declaration": true,
4-
"target": "es5",
5-
"module": "commonjs",
6-
"lib": ["es6", "dom"],
7-
"moduleResolution": "node",
8-
"outDir": "../../deploy",
9-
"sourceMap": true,
104
"emitDecoratorMetadata": true,
115
"experimentalDecorators": true,
12-
"removeComments": false,
6+
"lib": ["es6", "dom"],
7+
"mapRoot": "./",
8+
"module": "commonjs",
9+
"moduleResolution": "node",
1310
"noImplicitAny": true,
1411
"suppressImplicitAnyIndexErrors": true,
15-
"typeRoots": [
16-
"../../node_modules/@types/"
17-
]
12+
"outDir": "../../deploy",
13+
"sourceMap": true,
14+
"target": "es5",
15+
"types": []
1816
},
1917
"angularCompilerOptions": {
2018
"genDir": "../../deploy"
21-
},
22-
"exclude": [
23-
"node_modules"
24-
]
19+
}
2520
}

0 commit comments

Comments
 (0)