-
Notifications
You must be signed in to change notification settings - Fork 12.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Recognize relative path using in outDir property (#9025)
* Recognize relative path using in outDir property * Add projects tests * Add project .json files * Update baselines
- Loading branch information
Showing
92 changed files
with
420 additions
and
2 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
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/defaultExcludeNodeModulesAndOutDir/amd/OutDir/a.d.ts
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 @@ | ||
declare var test: number; |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/defaultExcludeNodeModulesAndOutDir/amd/OutDir/a.js
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 @@ | ||
var test = 10; |
14 changes: 14 additions & 0 deletions
14
...ce/project/defaultExcludeNodeModulesAndOutDir/amd/defaultExcludeNodeModulesAndOutDir.json
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 @@ | ||
{ | ||
"scenario": "Verify default exclude property in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeNodeModulesAndOutDir", | ||
"baselineCheck": true, | ||
"declaration": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js", | ||
"OutDir/a.d.ts" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/defaultExcludeNodeModulesAndOutDir/node/OutDir/a.d.ts
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 @@ | ||
declare var test: number; |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/defaultExcludeNodeModulesAndOutDir/node/OutDir/a.js
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 @@ | ||
var test = 10; |
14 changes: 14 additions & 0 deletions
14
...e/project/defaultExcludeNodeModulesAndOutDir/node/defaultExcludeNodeModulesAndOutDir.json
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 @@ | ||
{ | ||
"scenario": "Verify default exclude property in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeNodeModulesAndOutDir", | ||
"baselineCheck": true, | ||
"declaration": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js", | ||
"OutDir/a.d.ts" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
...baselines/reference/project/defaultExcludeNodeModulesAndOutDirWithAllowJS/amd/OutDir/a.js
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 @@ | ||
var test = 10; |
12 changes: 12 additions & 0 deletions
12
...udeNodeModulesAndOutDirWithAllowJS/amd/defaultExcludeNodeModulesAndOutDirWithAllowJS.json
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,12 @@ | ||
{ | ||
"scenario": "Verify default exclude property in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeNodeModulesAndOutDirWithAllowJS", | ||
"baselineCheck": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
...aselines/reference/project/defaultExcludeNodeModulesAndOutDirWithAllowJS/node/OutDir/a.js
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 @@ | ||
var test = 10; |
12 changes: 12 additions & 0 deletions
12
...deNodeModulesAndOutDirWithAllowJS/node/defaultExcludeNodeModulesAndOutDirWithAllowJS.json
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,12 @@ | ||
{ | ||
"scenario": "Verify default exclude property in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeNodeModulesAndOutDirWithAllowJS", | ||
"baselineCheck": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
...elines/reference/project/defaultExcludeNodeModulesAndRelativePathOutDir/amd/OutDir/a.d.ts
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 @@ | ||
declare var test: number; |
1 change: 1 addition & 0 deletions
1
...aselines/reference/project/defaultExcludeNodeModulesAndRelativePathOutDir/amd/OutDir/a.js
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 @@ | ||
var test = 10; |
14 changes: 14 additions & 0 deletions
14
...eNodeModulesAndRelativePathOutDir/amd/defaultExcludeNodeModulesAndRelativePathOutDir.json
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 @@ | ||
{ | ||
"scenario": "Verify default exclude property with relative path for 'outDir' in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeNodeModulesAndRelativePathOutDir", | ||
"baselineCheck": true, | ||
"declaration": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js", | ||
"OutDir/a.d.ts" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
...lines/reference/project/defaultExcludeNodeModulesAndRelativePathOutDir/node/OutDir/a.d.ts
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 @@ | ||
declare var test: number; |
1 change: 1 addition & 0 deletions
1
...selines/reference/project/defaultExcludeNodeModulesAndRelativePathOutDir/node/OutDir/a.js
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 @@ | ||
var test = 10; |
14 changes: 14 additions & 0 deletions
14
...NodeModulesAndRelativePathOutDir/node/defaultExcludeNodeModulesAndRelativePathOutDir.json
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 @@ | ||
{ | ||
"scenario": "Verify default exclude property with relative path for 'outDir' in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeNodeModulesAndRelativePathOutDir", | ||
"baselineCheck": true, | ||
"declaration": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js", | ||
"OutDir/a.d.ts" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
...ference/project/defaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS/amd/OutDir/a.js
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 @@ | ||
var test = 10; |
12 changes: 12 additions & 0 deletions
12
...ePathOutDirWithAllowJS/amd/defaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS.json
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,12 @@ | ||
{ | ||
"scenario": "Verify default exclude property with relative path for 'outDir' in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS", | ||
"baselineCheck": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
...erence/project/defaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS/node/OutDir/a.js
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 @@ | ||
var test = 10; |
12 changes: 12 additions & 0 deletions
12
...PathOutDirWithAllowJS/node/defaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS.json
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,12 @@ | ||
{ | ||
"scenario": "Verify default exclude property with relative path for 'outDir' in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS", | ||
"baselineCheck": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/defaultExcludeOnlyNodeModules/amd/a.d.ts
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 @@ | ||
declare var test: number; |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/defaultExcludeOnlyNodeModules/amd/a.js
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 @@ | ||
var test = 10; |
14 changes: 14 additions & 0 deletions
14
...es/reference/project/defaultExcludeOnlyNodeModules/amd/defaultExcludeOnlyNodeModules.json
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 @@ | ||
{ | ||
"scenario": "Verify default exclude property with only node_modules in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeOnlyNodeModules", | ||
"baselineCheck": true, | ||
"declaration": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"a.js", | ||
"a.d.ts" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/defaultExcludeOnlyNodeModules/node/a.d.ts
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 @@ | ||
declare var test: number; |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/defaultExcludeOnlyNodeModules/node/a.js
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 @@ | ||
var test = 10; |
14 changes: 14 additions & 0 deletions
14
...s/reference/project/defaultExcludeOnlyNodeModules/node/defaultExcludeOnlyNodeModules.json
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 @@ | ||
{ | ||
"scenario": "Verify default exclude property with only node_modules in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeOnlyNodeModules", | ||
"baselineCheck": true, | ||
"declaration": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"a.js", | ||
"a.d.ts" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/specifyExcludeUsingRelativepath/amd/OutDir/a.d.ts
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 @@ | ||
declare var test: number; |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/specifyExcludeUsingRelativepath/amd/OutDir/a.js
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 @@ | ||
var test = 10; |
14 changes: 14 additions & 0 deletions
14
...eference/project/specifyExcludeUsingRelativepath/amd/specifyExcludeUsingRelativepath.json
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 @@ | ||
{ | ||
"scenario": "Verify exclude property without using relative path", | ||
"projectRoot": "tests/cases/projects/projectOption/SpecifyExcludeUsingRelativePath", | ||
"baselineCheck": true, | ||
"declaration": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js", | ||
"OutDir/a.d.ts" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/specifyExcludeUsingRelativepath/node/OutDir/a.d.ts
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 @@ | ||
declare var test: number; |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/specifyExcludeUsingRelativepath/node/OutDir/a.js
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 @@ | ||
var test = 10; |
14 changes: 14 additions & 0 deletions
14
...ference/project/specifyExcludeUsingRelativepath/node/specifyExcludeUsingRelativepath.json
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 @@ | ||
{ | ||
"scenario": "Verify exclude property without using relative path", | ||
"projectRoot": "tests/cases/projects/projectOption/SpecifyExcludeUsingRelativePath", | ||
"baselineCheck": true, | ||
"declaration": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js", | ||
"OutDir/a.d.ts" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/specifyExcludeUsingRelativepathWithAllowJS/amd/OutDir/a.js
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 @@ | ||
var test = 10; |
12 changes: 12 additions & 0 deletions
12
...fyExcludeUsingRelativepathWithAllowJS/amd/specifyExcludeUsingRelativepathWithAllowJS.json
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,12 @@ | ||
{ | ||
"scenario": "Verify exclude property without using relative path", | ||
"projectRoot": "tests/cases/projects/projectOption/SpecifyExcludeUsingRelativePathWithAllowJS", | ||
"baselineCheck": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
...s/baselines/reference/project/specifyExcludeUsingRelativepathWithAllowJS/node/OutDir/a.js
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 @@ | ||
var test = 10; |
12 changes: 12 additions & 0 deletions
12
...yExcludeUsingRelativepathWithAllowJS/node/specifyExcludeUsingRelativepathWithAllowJS.json
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,12 @@ | ||
{ | ||
"scenario": "Verify exclude property without using relative path", | ||
"projectRoot": "tests/cases/projects/projectOption/SpecifyExcludeUsingRelativePathWithAllowJS", | ||
"baselineCheck": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/specifyExcludeWithOutUsingRelativePath/amd/OutDir/a.d.ts
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 @@ | ||
declare var test: number; |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/specifyExcludeWithOutUsingRelativePath/amd/OutDir/a.js
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 @@ | ||
var test = 10; |
14 changes: 14 additions & 0 deletions
14
...ct/specifyExcludeWithOutUsingRelativePath/amd/specifyExcludeWithOutUsingRelativePath.json
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 @@ | ||
{ | ||
"scenario": "Verify exclude property without using relative path", | ||
"projectRoot": "tests/cases/projects/projectOption/SpecifyExcludeWithOutUsingRelativePath", | ||
"baselineCheck": true, | ||
"declaration": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js", | ||
"OutDir/a.d.ts" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/specifyExcludeWithOutUsingRelativePath/node/OutDir/a.d.ts
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 @@ | ||
declare var test: number; |
1 change: 1 addition & 0 deletions
1
tests/baselines/reference/project/specifyExcludeWithOutUsingRelativePath/node/OutDir/a.js
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 @@ | ||
var test = 10; |
14 changes: 14 additions & 0 deletions
14
...t/specifyExcludeWithOutUsingRelativePath/node/specifyExcludeWithOutUsingRelativePath.json
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 @@ | ||
{ | ||
"scenario": "Verify exclude property without using relative path", | ||
"projectRoot": "tests/cases/projects/projectOption/SpecifyExcludeWithOutUsingRelativePath", | ||
"baselineCheck": true, | ||
"declaration": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js", | ||
"OutDir/a.d.ts" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
...lines/reference/project/specifyExcludeWithOutUsingRelativePathWithAllowJS/amd/OutDir/a.js
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 @@ | ||
var test = 10; |
12 changes: 12 additions & 0 deletions
12
...utUsingRelativePathWithAllowJS/amd/specifyExcludeWithOutUsingRelativePathWithAllowJS.json
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,12 @@ | ||
{ | ||
"scenario": "Verify exclude property without using relative path", | ||
"projectRoot": "tests/cases/projects/projectOption/SpecifyExcludeWithOutUsingRelativePathWithAllowJS", | ||
"baselineCheck": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
...ines/reference/project/specifyExcludeWithOutUsingRelativePathWithAllowJS/node/OutDir/a.js
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 @@ | ||
var test = 10; |
12 changes: 12 additions & 0 deletions
12
...tUsingRelativePathWithAllowJS/node/specifyExcludeWithOutUsingRelativePathWithAllowJS.json
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,12 @@ | ||
{ | ||
"scenario": "Verify exclude property without using relative path", | ||
"projectRoot": "tests/cases/projects/projectOption/SpecifyExcludeWithOutUsingRelativePathWithAllowJS", | ||
"baselineCheck": true, | ||
"resolvedInputFiles": [ | ||
"lib.d.ts", | ||
"a.ts" | ||
], | ||
"emittedFiles": [ | ||
"OutDir/a.js" | ||
] | ||
} |
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,6 @@ | ||
{ | ||
"scenario": "Verify default exclude property in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeNodeModulesAndOutDir", | ||
"baselineCheck": true, | ||
"declaration": true | ||
} |
5 changes: 5 additions & 0 deletions
5
tests/cases/project/defaultExcludeNodeModulesAndOutDirWithAllowJS.json
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,5 @@ | ||
{ | ||
"scenario": "Verify default exclude property in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeNodeModulesAndOutDirWithAllowJS", | ||
"baselineCheck": true | ||
} |
6 changes: 6 additions & 0 deletions
6
tests/cases/project/defaultExcludeNodeModulesAndRelativePathOutDir.json
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,6 @@ | ||
{ | ||
"scenario": "Verify default exclude property with relative path for 'outDir' in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeNodeModulesAndRelativePathOutDir", | ||
"baselineCheck": true, | ||
"declaration": true | ||
} |
5 changes: 5 additions & 0 deletions
5
tests/cases/project/defaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS.json
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,5 @@ | ||
{ | ||
"scenario": "Verify default exclude property with relative path for 'outDir' in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeNodeModulesAndRelativePathOutDirWithAllowJS", | ||
"baselineCheck": true | ||
} |
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,6 @@ | ||
{ | ||
"scenario": "Verify default exclude property with only node_modules in project option", | ||
"projectRoot": "tests/cases/projects/projectOption/DefaultExcludeOnlyNodeModules", | ||
"baselineCheck": true, | ||
"declaration": true | ||
} |
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,6 @@ | ||
{ | ||
"scenario": "Verify exclude property without using relative path", | ||
"projectRoot": "tests/cases/projects/projectOption/SpecifyExcludeUsingRelativePath", | ||
"baselineCheck": true, | ||
"declaration": true | ||
} |
Oops, something went wrong.