File tree Expand file tree Collapse file tree 6 files changed +10
-8
lines changed Expand file tree Collapse file tree 6 files changed +10
-8
lines changed Original file line number Diff line number Diff line change
1
+ 15
Original file line number Diff line number Diff line change 64
64
"prettier" : " ^2.2.1" ,
65
65
"treeify" : " ^1.1.0" ,
66
66
"ts-jest" : " ^26.4.4" ,
67
- "typescript" : " ^4.1.2 "
67
+ "typescript" : " ^4.1.3 "
68
68
},
69
69
"lint-staged" : {
70
70
"*.{ts,tsx}" : [
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import type { MirroredRegularNode } from './mirrored';
3
3
import type { RegularNode } from './RegularNode' ;
4
4
import type { RootNode } from './RootNode' ;
5
5
6
- let SEED = 0 ;
6
+ let SEED = BigInt ( 0 ) ; // cannot use literal, cause TS.
7
7
8
8
export abstract class BaseNode {
9
9
public readonly id : string ;
Original file line number Diff line number Diff line change 10
10
11
11
"compilerOptions" : {
12
12
"outDir" : " dist" ,
13
+ "target" : " ES2018" ,
13
14
"moduleResolution" : " node"
14
15
}
15
16
}
Original file line number Diff line number Diff line change 4
4
"include" : [" ." ],
5
5
"exclude" : [" **/__mocks__/**" , " dist/" ],
6
6
"compilerOptions" : {
7
- "lib" : [" dom" , " es2017 " ],
8
- "target" : " es2017 " ,
7
+ "lib" : [" dom" , " ES2018 " ],
8
+ "target" : " ES2020 " ,
9
9
"importsNotUsedAsValues" : " error" ,
10
10
"esModuleInterop" : true
11
11
}
Original file line number Diff line number Diff line change @@ -8648,10 +8648,10 @@ typedarray@^0.0.6:
8648
8648
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
8649
8649
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
8650
8650
8651
- typescript@^4.1.2 :
8652
- version "4.1.2 "
8653
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.1.2 .tgz#6369ef22516fe5e10304aae5a5c4862db55380e9 "
8654
- integrity sha512-thGloWsGH3SOxv1SoY7QojKi0tc+8FnOmiarEGMbd/lar7QOEd3hvlx3Fp5y6FlDUGl9L+pd4n2e+oToGMmhRQ ==
8651
+ typescript@^4.1.3 :
8652
+ version "4.1.3 "
8653
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.1.3 .tgz#519d582bd94cba0cf8934c7d8e8467e473f53bb7 "
8654
+ integrity sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg ==
8655
8655
8656
8656
uglify-js@^3.1.4 :
8657
8657
version "3.6.0"
You can’t perform that action at this time.
0 commit comments