Skip to content

Commit

Permalink
Bug(#24): Fix mapping bug
Browse files Browse the repository at this point in the history
  • Loading branch information
danrevah committed Feb 8, 2017
1 parent 6038ce8 commit 07bbf67
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "ngx-pipes",
"version": "1.4.0",
"version": "1.4.1",
"author": "Dan Revah",
"description": "Useful angular2 pipes",
"license": "MIT",
"angular-cli": {},
"scripts": {
"start": "ng serve",
"test": "ng test",
"build:js": "ngc -p tsconfig.json"
"build:js": "ngc -p tsconfig-aot.json"
},
"main": "src/app/index.js",
"keywords": [
Expand Down
29 changes: 29 additions & 0 deletions tsconfig-aot.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"compilerOptions": {
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"sourceMap": true,
"lib": ["es6", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"target": "es5",
"typeRoots": [
"../node_modules/@types"
]
},
"include": [
"src/app/pipes.module.ts",
"src/app/index.ts",
"index.ts"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
],
"angularCompilerOptions": {
"strictMetadataEmit": true,
"skipTemplateCodegen": true
}
}
5 changes: 1 addition & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,5 @@
"exclude": [
"node_modules",
"**/*.spec.ts"
],
"angularCompilerOptions": {
"strictMetadataEmit": true
}
]
}

0 comments on commit 07bbf67

Please sign in to comment.