File tree Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ node_modules
5
5
/lib
6
6
/src /typings /
7
7
/coverage /
8
+ /aot
Original file line number Diff line number Diff line change 4
4
/.idea /
5
5
/node_modules /
6
6
/src /typings /
7
+ /aot
7
8
8
9
.codeclimate.yml
9
10
devrelease.sh
@@ -12,6 +13,7 @@ devrelease.sh
12
13
.gitignore
13
14
karma.conf.js
14
15
karma-test-shim.js
16
+ systemjs.config.js
15
17
.npmignore
16
18
release.sh
17
19
.travis.yml
Original file line number Diff line number Diff line change 4
4
"description" : " DataTable component for Angular2 framework" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
7
- "watch" : " tsc -p src -w" ,
8
7
"prebuild" : " rm -rf lib" ,
9
- "build" : " tsc -p src" ,
8
+ "build" : " ngc -p src" ,
10
9
"start" : " http-server -c-1 -o -p 8875 ." ,
11
10
"pretest" : " npm run build" ,
12
11
"test" : " karma start karma.conf.js" ,
36
35
},
37
36
"homepage" : " https://github.com/mariuszfoltak/angular2-datatable#readme" ,
38
37
"devDependencies" : {
39
- "@angular/compiler" : " ^2.0.0" ,
40
- "@angular/platform-browser-dynamic" : " ^2.0.0" ,
38
+ "@angular/core" : " ^2.1.0" ,
39
+ "@angular/compiler" : " ^2.1.0" ,
40
+ "@angular/common" : " ^2.1.0" ,
41
+ "@angular/platform-browser" : " ^2.1.0" ,
42
+ "@angular/platform-browser-dynamic" : " ^2.1.0" ,
43
+ "@angular/compiler-cli" : " ^2.1.0" ,
41
44
"core-js" : " ^2.4.1" ,
42
45
"http-server" : " ^0.9.0" ,
43
46
"jasmine-core" : " ^2.4.1" ,
Original file line number Diff line number Diff line change 16
16
" dom" ,
17
17
" es2015"
18
18
]
19
+ },
20
+ "angularCompilerOptions" : {
21
+ "genDir" : " ../aot" ,
22
+ "skipMetadataEmit" : false
19
23
}
20
24
}
You can’t perform that action at this time.
0 commit comments