Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Hanson committed Jan 6, 2017
1 parent 254c125 commit a05fdcd
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 10 deletions.
1 change: 1 addition & 0 deletions angular/UNUSED_FILES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
angular-component-router.d.ts
3 changes: 1 addition & 2 deletions angular/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"files": [
"index.d.ts",
"angular-component-router.d.ts",
"angular-tests.ts"
],
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": false,
"baseUrl": "../",
Expand Down
2 changes: 1 addition & 1 deletion async/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"target": "es6",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
"../"
Expand Down
2 changes: 1 addition & 1 deletion d3-request/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitThis": false,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
Expand Down
6 changes: 3 additions & 3 deletions ember/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1514,7 +1514,7 @@ declare namespace Ember {
toArray(): any[];
}
class Registry {
constructor (options: any);
constructor(options: any);
static set: typeof Ember.set;
}

Expand Down Expand Up @@ -2242,10 +2242,10 @@ declare namespace Ember {
}
namespace Test {
class Adapter extends Ember.Object {
constructor ();
constructor();
}
class Promise<T, U> extends Ember.RSVP.Promise<T, U> {
constructor ();
constructor();
}
function oninjectHelpers(callback: Function): void;
function promise<T, U>(resolver: (a: T) => any, label: string): Ember.Test.Promise<T, U>;
Expand Down
1 change: 1 addition & 0 deletions estree/UNUSED_FILES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
flow.d.ts
1 change: 0 additions & 1 deletion estree/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
},
"files": [
"index.d.ts",
"flow.d.ts",
"estree-tests.ts"
]
}
5 changes: 5 additions & 0 deletions inversify-devtools/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"dependencies": {
"inversify": "^2.0.1"
}
}
2 changes: 1 addition & 1 deletion react-addons-shallow-compare/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"files": [
"index.d.ts",
"react-addons-shallow-compare-tests.ts"
"react-addons-shallow-compare-tests.tsx"
],
"compilerOptions": {
"module": "commonjs",
Expand Down
4 changes: 3 additions & 1 deletion reflect-metadata/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
"forceConsistentCasingInFileNames": true,

"experimentalDecorators": true
},
"files": [
"index.d.ts",
Expand Down

0 comments on commit a05fdcd

Please sign in to comment.