Skip to content

Commit 6a92fcb

Browse files
committed
Ignore @types in tests, removes absolute path in baselines
1 parent adebb92 commit 6a92fcb

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

test/baselines/tsconfigOutFile/dev/errors.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
TypeScript error: /Users/ivogabe/Documents/Websites/gulp-typescript-incremental/node_modules/@types/chalk/index.d.ts(6,1): error TS6131: Cannot compile modules using option 'outFile' unless the '--module' flag is 'amd' or 'system'.
1+
22
{
33
"transpileErrors": 0,
44
"optionsErrors": 0,
55
"syntaxErrors": 0,
66
"globalErrors": 0,
7-
"semanticErrors": 1,
7+
"semanticErrors": 0,
88
"declarationErrors": 0,
99
"emitErrors": 0,
1010
"emitSkipped": false
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3-
"outDir": "dist"
3+
"outDir": "dist",
4+
"types": []
45
}
56
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3-
"outFile": "outFile.js"
3+
"outFile": "outFile.js",
4+
"types": []
45
}
56
}

0 commit comments

Comments
 (0)