-
Notifications
You must be signed in to change notification settings - Fork 760
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
typecheck before building app/main (#1368)
* typecheck before building app/main * update changelog
- Loading branch information
1 parent
ae09702
commit 684a72c
Showing
11 changed files
with
24 additions
and
5,887 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
{ | ||
"extends": "../../../tsconfig.json", | ||
"compilerOptions": { | ||
"outDir": "build/dist" | ||
"outDir": "build/dist", | ||
"declarationDir": "built" | ||
}, | ||
"include": ["./src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
{ | ||
"extends": "../../../tsconfig.json", | ||
"compilerOptions": { | ||
"outDir": "build/dist" | ||
"outDir": "build/dist", | ||
"declarationDir": "lib" | ||
}, | ||
"include": ["./src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,7 @@ | ||
{ | ||
"extends": "../../../tsconfig.json", | ||
"include": ["./src"] | ||
// "compilerOptions": { | ||
// "declaration": true, | ||
// "declarationDir": "lib", | ||
// // Emit declaration only when we are building with Babel | ||
// // "emitDeclarationOnly": true, | ||
// "lib": [ | ||
// "es2016", | ||
// "dom" | ||
// ], | ||
// "module": "commonjs", | ||
// "moduleResolution": "node", | ||
// "pretty": true, | ||
// "skipLibCheck": true, | ||
// "target": "es2017", | ||
// "types": [ | ||
// "node" | ||
// ], | ||
// "sourceMap": true, | ||
// // "paths": { | ||
// // "@bfemulator/sdk-shared": ["../../sdk/shared/build/dist"], | ||
// // "@bfemulator/sdk-main": ["../../sdk/main/build/dist"] | ||
// // }, | ||
// }, | ||
// "exclude": [ | ||
// "src/**/*.spec.js", | ||
// "src/**/*.spec.ts", | ||
// "src/**/*.test.js", | ||
// "src/**/*.test.ts", | ||
// "src/__tests__/**/*.js", | ||
// "src/__tests__/**/*.ts" | ||
// ], | ||
// "include": [ | ||
// "src/**/*" | ||
// ] | ||
"include": ["./src"], | ||
"compilerOptions": { | ||
"declarationDir": "lib" | ||
} | ||
} |
Oops, something went wrong.