tsc - ignore errors at command lineIgnore Typescript Errors “property does not exist on value of type”typescript (tsc) error on Array<>typescript getting error TS2304: cannot find name ' require'tsc seemingly not picking up “exclude” options fro tsconfig.jsonTypescript TSC CommandLine - Prevent TSC from watchingAngular 2 tsc errorTSC command error TS2314 on lib.d.ts filetsc --watch not updating files when outDir present in tsconfig.jsonVisual Studio Code always uses old version of tscTypeScript/tsc module resolution peculiarity
In Romance of the Three Kingdoms why do people still use bamboo sticks when papers are already invented?
Blender 2.8 I can't see vertices, edges or faces in edit mode
How much of data wrangling is a data scientist's job?
Should I tell management that I intend to leave due to bad software development practices?
Is delete *p an alternative to delete [] p?
Infinite Abelian subgroup of infinite non Abelian group example
Brothers & sisters
Is it possible to download Internet Explorer on my Mac running OS X El Capitan?
What mechanic is there to disable a threat instead of killing it?
Can I ask the recruiters in my resume to put the reason why I am rejected?
What killed these X2 caps?
Why is Collection not simply treated as Collection<?>
AES: Why is it a good practice to use only the first 16bytes of a hash for encryption?
Why is the 'in' operator throwing an error with a string literal instead of logging false?
What's the difference between 'rename' and 'mv'?
Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?
Alternative to sending password over mail?
How to draw the figure with four pentagons?
I Accidentally Deleted a Stock Terminal Theme
What is the word for reserving something for yourself before others do?
Facing a paradox: Earnshaw's theorem in one dimension
I would say: "You are another teacher", but she is a woman and I am a man
Is Lorentz symmetry broken if SUSY is broken?
How to show the equivalence between the regularized regression and their constraint formulas using KKT
tsc - ignore errors at command line
Ignore Typescript Errors “property does not exist on value of type”typescript (tsc) error on Array<>typescript getting error TS2304: cannot find name ' require'tsc seemingly not picking up “exclude” options fro tsconfig.jsonTypescript TSC CommandLine - Prevent TSC from watchingAngular 2 tsc errorTSC command error TS2314 on lib.d.ts filetsc --watch not updating files when outDir present in tsconfig.jsonVisual Studio Code always uses old version of tscTypeScript/tsc module resolution peculiarity
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have this:
$ tsc -m amd --outFile dist/out.js lib/index.ts
lib/index.ts(87,48): error TS1005: ';' expected.
Is there a command line option I can use to ignore errors?
typescript typescript2.0 tsc
|
show 5 more comments
I have this:
$ tsc -m amd --outFile dist/out.js lib/index.ts
lib/index.ts(87,48): error TS1005: ';' expected.
Is there a command line option I can use to ignore errors?
typescript typescript2.0 tsc
3
What do you mean ignore errors? That should still output the compiled JS. There is a switch--noEmitOnErrorwhich is set to false by default. If you were to set it to true it would not emit JS (+ .d.ts).
– Pricey
Jan 11 '18 at 5:15
4
What is the context of the error you're trying to ignore? Is it a npm library or is it your own code? What version of TypeScript do you have (tsc -v)? This sounds like a fatal syntax error that is preventing the compiler from completing compilation; it can't just be ignored.
– GhostCoder
Jan 11 '18 at 5:42
6
@AlexanderMills You can ignore semantic errors (aka type erorrs, the kind of restrictions typescript imposes on top of JS) but you can't ignore syntactic errors (ie the syntax on JS/TS is invalid). The error you cite there is a sintactic error and will not be ignorable. If you don't specify other compiler options, the compiler will still emit JS even on semantic errors so taht should work out of the box.
– Titian Cernicova-Dragomir
Oct 1 '18 at 12:43
2
Why don't you fix the error?
– k0pernikus
Nov 12 '18 at 14:01
1
Can you give us the code so we can see why you have an error in the first place?
– Binary Brain
Mar 5 at 17:52
|
show 5 more comments
I have this:
$ tsc -m amd --outFile dist/out.js lib/index.ts
lib/index.ts(87,48): error TS1005: ';' expected.
Is there a command line option I can use to ignore errors?
typescript typescript2.0 tsc
I have this:
$ tsc -m amd --outFile dist/out.js lib/index.ts
lib/index.ts(87,48): error TS1005: ';' expected.
Is there a command line option I can use to ignore errors?
typescript typescript2.0 tsc
typescript typescript2.0 tsc
asked Jan 11 '18 at 5:08
Alexander MillsAlexander Mills
20.3k35163351
20.3k35163351
3
What do you mean ignore errors? That should still output the compiled JS. There is a switch--noEmitOnErrorwhich is set to false by default. If you were to set it to true it would not emit JS (+ .d.ts).
– Pricey
Jan 11 '18 at 5:15
4
What is the context of the error you're trying to ignore? Is it a npm library or is it your own code? What version of TypeScript do you have (tsc -v)? This sounds like a fatal syntax error that is preventing the compiler from completing compilation; it can't just be ignored.
– GhostCoder
Jan 11 '18 at 5:42
6
@AlexanderMills You can ignore semantic errors (aka type erorrs, the kind of restrictions typescript imposes on top of JS) but you can't ignore syntactic errors (ie the syntax on JS/TS is invalid). The error you cite there is a sintactic error and will not be ignorable. If you don't specify other compiler options, the compiler will still emit JS even on semantic errors so taht should work out of the box.
– Titian Cernicova-Dragomir
Oct 1 '18 at 12:43
2
Why don't you fix the error?
– k0pernikus
Nov 12 '18 at 14:01
1
Can you give us the code so we can see why you have an error in the first place?
– Binary Brain
Mar 5 at 17:52
|
show 5 more comments
3
What do you mean ignore errors? That should still output the compiled JS. There is a switch--noEmitOnErrorwhich is set to false by default. If you were to set it to true it would not emit JS (+ .d.ts).
– Pricey
Jan 11 '18 at 5:15
4
What is the context of the error you're trying to ignore? Is it a npm library or is it your own code? What version of TypeScript do you have (tsc -v)? This sounds like a fatal syntax error that is preventing the compiler from completing compilation; it can't just be ignored.
– GhostCoder
Jan 11 '18 at 5:42
6
@AlexanderMills You can ignore semantic errors (aka type erorrs, the kind of restrictions typescript imposes on top of JS) but you can't ignore syntactic errors (ie the syntax on JS/TS is invalid). The error you cite there is a sintactic error and will not be ignorable. If you don't specify other compiler options, the compiler will still emit JS even on semantic errors so taht should work out of the box.
– Titian Cernicova-Dragomir
Oct 1 '18 at 12:43
2
Why don't you fix the error?
– k0pernikus
Nov 12 '18 at 14:01
1
Can you give us the code so we can see why you have an error in the first place?
– Binary Brain
Mar 5 at 17:52
3
3
What do you mean ignore errors? That should still output the compiled JS. There is a switch
--noEmitOnError which is set to false by default. If you were to set it to true it would not emit JS (+ .d.ts).– Pricey
Jan 11 '18 at 5:15
What do you mean ignore errors? That should still output the compiled JS. There is a switch
--noEmitOnError which is set to false by default. If you were to set it to true it would not emit JS (+ .d.ts).– Pricey
Jan 11 '18 at 5:15
4
4
What is the context of the error you're trying to ignore? Is it a npm library or is it your own code? What version of TypeScript do you have (
tsc -v)? This sounds like a fatal syntax error that is preventing the compiler from completing compilation; it can't just be ignored.– GhostCoder
Jan 11 '18 at 5:42
What is the context of the error you're trying to ignore? Is it a npm library or is it your own code? What version of TypeScript do you have (
tsc -v)? This sounds like a fatal syntax error that is preventing the compiler from completing compilation; it can't just be ignored.– GhostCoder
Jan 11 '18 at 5:42
6
6
@AlexanderMills You can ignore semantic errors (aka type erorrs, the kind of restrictions typescript imposes on top of JS) but you can't ignore syntactic errors (ie the syntax on JS/TS is invalid). The error you cite there is a sintactic error and will not be ignorable. If you don't specify other compiler options, the compiler will still emit JS even on semantic errors so taht should work out of the box.
– Titian Cernicova-Dragomir
Oct 1 '18 at 12:43
@AlexanderMills You can ignore semantic errors (aka type erorrs, the kind of restrictions typescript imposes on top of JS) but you can't ignore syntactic errors (ie the syntax on JS/TS is invalid). The error you cite there is a sintactic error and will not be ignorable. If you don't specify other compiler options, the compiler will still emit JS even on semantic errors so taht should work out of the box.
– Titian Cernicova-Dragomir
Oct 1 '18 at 12:43
2
2
Why don't you fix the error?
– k0pernikus
Nov 12 '18 at 14:01
Why don't you fix the error?
– k0pernikus
Nov 12 '18 at 14:01
1
1
Can you give us the code so we can see why you have an error in the first place?
– Binary Brain
Mar 5 at 17:52
Can you give us the code so we can see why you have an error in the first place?
– Binary Brain
Mar 5 at 17:52
|
show 5 more comments
1 Answer
1
active
oldest
votes
With the // @ts-ignore comment, Typescript compiler will ignore the line below it.
For example, you got an compiling error here:


Then just add // @ts-ignore
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f48200119%2ftsc-ignore-errors-at-command-line%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
With the // @ts-ignore comment, Typescript compiler will ignore the line below it.
For example, you got an compiling error here:


Then just add // @ts-ignore
add a comment |
With the // @ts-ignore comment, Typescript compiler will ignore the line below it.
For example, you got an compiling error here:


Then just add // @ts-ignore
add a comment |
With the // @ts-ignore comment, Typescript compiler will ignore the line below it.
For example, you got an compiling error here:


Then just add // @ts-ignore
With the // @ts-ignore comment, Typescript compiler will ignore the line below it.
For example, you got an compiling error here:


Then just add // @ts-ignore
answered Mar 9 at 2:07
Giang NguyễnGiang Nguyễn
180211
180211
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f48200119%2ftsc-ignore-errors-at-command-line%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
What do you mean ignore errors? That should still output the compiled JS. There is a switch
--noEmitOnErrorwhich is set to false by default. If you were to set it to true it would not emit JS (+ .d.ts).– Pricey
Jan 11 '18 at 5:15
4
What is the context of the error you're trying to ignore? Is it a npm library or is it your own code? What version of TypeScript do you have (
tsc -v)? This sounds like a fatal syntax error that is preventing the compiler from completing compilation; it can't just be ignored.– GhostCoder
Jan 11 '18 at 5:42
6
@AlexanderMills You can ignore semantic errors (aka type erorrs, the kind of restrictions typescript imposes on top of JS) but you can't ignore syntactic errors (ie the syntax on JS/TS is invalid). The error you cite there is a sintactic error and will not be ignorable. If you don't specify other compiler options, the compiler will still emit JS even on semantic errors so taht should work out of the box.
– Titian Cernicova-Dragomir
Oct 1 '18 at 12:43
2
Why don't you fix the error?
– k0pernikus
Nov 12 '18 at 14:01
1
Can you give us the code so we can see why you have an error in the first place?
– Binary Brain
Mar 5 at 17:52