Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into config-inheritance-through-modules
  • Loading branch information
weswigham committed Sep 27, 2018
commit 19c3859c9bc53ca159ad276a47a9d1e646243656
9 changes: 9 additions & 0 deletions src/testRunner/unittests/configurationExtension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,15 @@ namespace ts {
combinePaths(basePath, "main.ts")
]);

testSuccess("can overwrite top-level files using extended []", "configs/fifth.json", {
allowJs: true,
noImplicitAny: true,
strictNullChecks: true,
module: ModuleKind.System
}, [
combinePaths(basePath, "tests/utils.ts")
]);

describe("finding extended configs from node_modules", () => {
testSuccess("can lookup via tsconfig field", "tsconfig.extendsBox.json", { strict: true }, [combinePaths(basePath, "main.ts")]);
testSuccess("can lookup via package-relative path", "tsconfig.extendsStrict.json", { strict: true }, [combinePaths(basePath, "main.ts")]);
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.