File tree Expand file tree Collapse file tree 4 files changed +35
-9
lines changed
test-typescript-versions/typescript4.6 Expand file tree Collapse file tree 4 files changed +35
-9
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"packageDir" : " ./dist" ,
3
3
"projects" : {
4
- "typescript37" : " ./test-typescript-versions/typescript3.7" ,
5
- "typescript38" : " ./test-typescript-versions/typescript3.8" ,
6
- "typescript39" : " ./test-typescript-versions/typescript3.9" ,
7
- "typescript40" : " ./test-typescript-versions/typescript4.0" ,
8
- "typescript41" : " ./test-typescript-versions/typescript4.1" ,
9
- "typescript42" : " ./test-typescript-versions/typescript4.2" ,
10
- "typescript43" : " ./test-typescript-versions/typescript4.3" ,
11
- "sample-app-angular" : " https://github.com/ui-router/sample-app-angular.git" ,
12
- "angular14" : " ./test-angular-versions/v14"
4
+ "angular14" : " ./test-angular-versions/v14" ,
5
+ "typescript46" : " ./test-typescript-versions/typescript4.6" ,
6
+ "sample-app-angular" : " https://github.com/ui-router/sample-app-angular.git"
13
7
}
14
8
}
Original file line number Diff line number Diff line change
1
+ import { UIRouter } from '@uirouter/angular' ;
2
+ console . log ( UIRouter ) ; // tslint:disable-line:no-console
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " @uirouter/angular-test-typescript4.6" ,
3
+ "version" : " 1.0.0" ,
4
+ "description" : " Test against Typescript 4.6" ,
5
+ "scripts" : {
6
+ "test" : " tsc"
7
+ },
8
+ "author" : " " ,
9
+ "license" : " MIT" ,
10
+ "dependencies" : {
11
+ "@angular/common" : " ^12" ,
12
+ "@angular/core" : " ^12" ,
13
+ "@uirouter/angular" : " latest" ,
14
+ "rxjs" : " ^6.0.0" ,
15
+ "typescript" : " 4.6"
16
+ },
17
+ "devDependencies" : {}
18
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "moduleResolution" : " node" ,
4
+ "module" : " commonjs" ,
5
+ "lib" : [" es6" , " dom" ],
6
+ "noImplicitAny" : true ,
7
+ "noEmit" : true ,
8
+ "target" : " es5" ,
9
+ "typeRoots" : [" node_modules/@types" ]
10
+ },
11
+ "files" : [" index.ts" ]
12
+ }
You can’t perform that action at this time.
0 commit comments