File tree 3 files changed +32
-6
lines changed
3 files changed +32
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ngx-pipes" ,
3
- "version" : " 1.4.0 " ,
3
+ "version" : " 1.4.1 " ,
4
4
"author" : " Dan Revah" ,
5
5
"description" : " Useful angular2 pipes" ,
6
6
"license" : " MIT" ,
7
7
"angular-cli" : {},
8
8
"scripts" : {
9
9
"start" : " ng serve" ,
10
10
"test" : " ng test" ,
11
- "build:js" : " ngc -p tsconfig.json"
11
+ "build:js" : " ngc -p tsconfig-aot .json"
12
12
},
13
13
"main" : " src/app/index.js" ,
14
14
"keywords" : [
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "declaration" : true ,
4
+ "emitDecoratorMetadata" : true ,
5
+ "experimentalDecorators" : true ,
6
+ "noImplicitAny" : true ,
7
+ "sourceMap" : true ,
8
+ "lib" : [" es6" , " dom" ],
9
+ "module" : " commonjs" ,
10
+ "moduleResolution" : " node" ,
11
+ "target" : " es5" ,
12
+ "typeRoots" : [
13
+ " ../node_modules/@types"
14
+ ]
15
+ },
16
+ "include" : [
17
+ " src/app/pipes.module.ts" ,
18
+ " src/app/index.ts" ,
19
+ " index.ts"
20
+ ],
21
+ "exclude" : [
22
+ " node_modules" ,
23
+ " **/*.spec.ts"
24
+ ],
25
+ "angularCompilerOptions" : {
26
+ "strictMetadataEmit" : true ,
27
+ "skipTemplateCodegen" : true
28
+ }
29
+ }
Original file line number Diff line number Diff line change 20
20
"exclude" : [
21
21
" node_modules" ,
22
22
" **/*.spec.ts"
23
- ],
24
- "angularCompilerOptions" : {
25
- "strictMetadataEmit" : true
26
- }
23
+ ]
27
24
}
You can’t perform that action at this time.
0 commit comments