mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-07-07 18:25:51 -05:00
Fix #7397: Remove error checks for noEmit and out* compiler options combined.
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
// @declaration: true
|
||||
// @noEmit: true
|
||||
// @fileName: a.ts
|
||||
|
||||
class c {
|
||||
}
|
||||
6
tests/cases/compiler/compilerOptionsOutAndNoEmit.ts
Normal file
6
tests/cases/compiler/compilerOptionsOutAndNoEmit.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
// @out: outDir
|
||||
// @noEmit: true
|
||||
// @fileName: a.ts
|
||||
|
||||
class c {
|
||||
}
|
||||
6
tests/cases/compiler/compilerOptionsOutDirAndNoEmit.ts
Normal file
6
tests/cases/compiler/compilerOptionsOutDirAndNoEmit.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
// @outDir: outDir
|
||||
// @noEmit: true
|
||||
// @fileName: a.ts
|
||||
|
||||
class c {
|
||||
}
|
||||
6
tests/cases/compiler/compilerOptionsOutFileAndNoEmit.ts
Normal file
6
tests/cases/compiler/compilerOptionsOutFileAndNoEmit.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
// @outFile: a.js
|
||||
// @noEmit: true
|
||||
// @fileName: a.ts
|
||||
|
||||
class c {
|
||||
}
|
||||
Reference in New Issue
Block a user