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;








11















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?










share|improve this question

















  • 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






  • 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

















11















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?










share|improve this question

















  • 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






  • 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













11












11








11


1






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?










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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 --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





    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





    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





    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












1 Answer
1






active

oldest

votes


















1














With the // @ts-ignore comment, Typescript compiler will ignore the line below it.



For example, you got an compiling error here:



enter image description here



enter image description here



Then just add // @ts-ignore
enter image description here






share|improve this answer























    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
    );



    );













    draft saved

    draft discarded


















    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









    1














    With the // @ts-ignore comment, Typescript compiler will ignore the line below it.



    For example, you got an compiling error here:



    enter image description here



    enter image description here



    Then just add // @ts-ignore
    enter image description here






    share|improve this answer



























      1














      With the // @ts-ignore comment, Typescript compiler will ignore the line below it.



      For example, you got an compiling error here:



      enter image description here



      enter image description here



      Then just add // @ts-ignore
      enter image description here






      share|improve this answer

























        1












        1








        1







        With the // @ts-ignore comment, Typescript compiler will ignore the line below it.



        For example, you got an compiling error here:



        enter image description here



        enter image description here



        Then just add // @ts-ignore
        enter image description here






        share|improve this answer













        With the // @ts-ignore comment, Typescript compiler will ignore the line below it.



        For example, you got an compiling error here:



        enter image description here



        enter image description here



        Then just add // @ts-ignore
        enter image description here







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 9 at 2:07









        Giang NguyễnGiang Nguyễn

        180211




        180211





























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            How to get text form Clipboard with JavaScript in Firefox 56?How to validate an email address in JavaScript?How do JavaScript closures work?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How do I copy to the clipboard in JavaScript?How do I include a JavaScript file in another JavaScript file?Get the current URL with JavaScript?How to replace all occurrences of a string in JavaScriptHow to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?

            Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

            List of MPs elected to the English parliament in 1640 (April) Contents List of constituencies and members See also Notes References Navigation menueNational Archives – The Glynde Place ArchivesCobbett's Parliamentary history of England, from the Norman Conquest in 1066 to the year 1803'Aldermen in Parliament', The Aldermen of the City of London: Temp. Henry III – 1912onepage&q&f&#61, false 229