-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix 'typecheck' command, don't generate .d.ts files for test files
- Loading branch information
1 parent
e32f032
commit 00249fa
Showing
10 changed files
with
54 additions
and
20 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
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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* Visit https://aka.ms/tsconfig to read more about this file */ | ||
{ | ||
// Intentionally empty, all files are covered by tsconfig.json files | ||
// in each package directory. | ||
"files": [], | ||
"references": [ | ||
{"path": "./packages/wonder-stuff-core"}, | ||
{"path": "./packages/wonder-stuff-i18n"}, | ||
{"path": "./packages/wonder-stuff-sentry"}, | ||
{"path": "./packages/wonder-stuff-server"}, | ||
{"path": "./packages/wonder-stuff-server-google"}, | ||
{"path": "./packages/wonder-stuff-testing"}, | ||
] | ||
} |
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,14 +1,33 @@ | ||
/* Visit https://aka.ms/tsconfig to read more about this file */ | ||
{ | ||
// Intentionally empty, all files are covered by tsconfig.json files | ||
// in each package directory. | ||
"files": [], | ||
"references": [ | ||
{"path": "./packages/wonder-stuff-core"}, | ||
{"path": "./packages/wonder-stuff-i18n"}, | ||
{"path": "./packages/wonder-stuff-sentry"}, | ||
{"path": "./packages/wonder-stuff-server"}, | ||
{"path": "./packages/wonder-stuff-server-google"}, | ||
{"path": "./packages/wonder-stuff-testing"}, | ||
] | ||
"exclude": ["**/dist", "**/*.flowtest.ts"], | ||
"compilerOptions": { | ||
/* Visit https://aka.ms/tsconfig to read more about this file */ | ||
|
||
/* Language and Environment */ | ||
"target": "ES2016", | ||
|
||
/* Modules */ | ||
"module": "ESNext", | ||
"moduleResolution": "node", | ||
"paths": { | ||
"@khanacademy/*": ["./packages/*/src/index.ts"], | ||
}, | ||
|
||
/* Emit */ | ||
"noEmit": true, | ||
|
||
/* Interop Constraints */ | ||
"esModuleInterop": true, | ||
"forceConsistentCasingInFileNames": true, | ||
|
||
/* Type Checking */ | ||
"strict": true, | ||
"noImplicitAny": true, | ||
"allowUnusedLabels": false, | ||
"allowUnreachableCode": false, | ||
|
||
/* Completeness */ | ||
"skipDefaultLibCheck": true, | ||
"skipLibCheck": false | ||
} | ||
} |