Skip to content

Commit

Permalink
Make TypeScript options more consistent across packages (#492)
Browse files Browse the repository at this point in the history
* Make TypeScript options more consistent across packages

* Try to fix publish tests with longer timeout

* Try to fix generate tests with longer timeout
  • Loading branch information
shadaj authored Jul 10, 2018
1 parent 1b96321 commit 7b293f2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ beforeEach(() => {
});
});

jest.setTimeout(15000);
jest.setTimeout(25000);

describe("successful codegen", () => {
test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const engineSuccess = ({ schema, tag, result } = {}) => nock => {
);
};

jest.setTimeout(25000);
jest.setTimeout(35000);

describe("successful uploads", () => {
test
Expand Down
4 changes: 1 addition & 3 deletions packages/apollo-cli/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
"compilerOptions": {
"declaration": true,
"jsx": "react",
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"outDir": "./lib",
"outDir": "lib",
"pretty": true,
"rootDirs": ["./src"],
"lib": ["es2017", "esnext.asynciterable"],
"target": "es2017",
"baseUrl": ".",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"skipLibCheck": true
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}

0 comments on commit 7b293f2

Please sign in to comment.