File tree Expand file tree Collapse file tree 5 files changed +238
-146
lines changed Expand file tree Collapse file tree 5 files changed +238
-146
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export interface Item {
44 [ key : string ] : any ;
55}
66export interface TreeItem {
7- data : Item ;
7+ data : Item | null ;
88 children : TreeItem [ ] ;
99}
1010export interface Config {
Original file line number Diff line number Diff line change 99 "license" : " MIT" ,
1010 "dependencies" : {},
1111 "devDependencies" : {
12- "@types/chai" : " ^3.5.2 " ,
12+ "@types/chai" : " ^4.0.4 " ,
1313 "@types/mocha" : " ^2.2.41" ,
14- "chai" : " ^3.5.0 " ,
14+ "chai" : " ^4.1.2 " ,
1515 "coveralls" : " ^2.13.1" ,
1616 "istanbul" : " ^0.4.5" ,
1717 "mocha" : " ^3.3.0" ,
1818 "mocha-lcov-reporter" : " ^1.3.0" ,
1919 "remap-istanbul" : " ^0.9.5" ,
2020 "tslint" : " ^5.2.0" ,
21- "tslint-config-standard" : " ^5 .0.2 " ,
21+ "tslint-config-standard" : " ^6 .0.1 " ,
2222 "typescript" : " ^2.3.2" ,
23- "uglify-js" : " ^2.8.23 "
23+ "uglify-js" : " ^3.1.1 "
2424 },
2525 "scripts" : {
2626 "preversion" : " yarn && npm run lint && npm run build && npm run test-and-send-cov-to-coveralls" ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export interface Item {
55}
66
77export interface TreeItem {
8- data : Item
8+ data : Item | null
99 children : TreeItem [ ]
1010}
1111
Original file line number Diff line number Diff line change 66 "sourceMap" : true ,
77 "moduleResolution" : " node" ,
88 "outDir" : " build" ,
9- "declaration" : true
9+ "declaration" : true ,
10+ "strictNullChecks" : true
1011 },
1112 "exclude" : [
1213 " node_modules" ,
You can’t perform that action at this time.
0 commit comments