Typescript file with bang operator won't build even though tsc version is high enoughkendo-angular-dropdowns combobox.component.d.tsUnknown compiler option 'files' launching ./node_modules/.bin/ng-xi18nAngular 5 ,Three Js errorIonic 3 and Angular 4 - Karma does not run the unit tests instantly. It takes a minute or above to start. Whats causing the slowness?npm ERR! notarget No matching version found for jasmine-core@~2.9.0cannot submit a form in angular 4installation npm failed for an existing project with angular 4What is wrong with this logfile., Can anybody please point me to the right direction?Error while creating new angular application(npm ERR! 404 Not Found: @angular/animations@~7.1.0.)ERROR TypeError: this._document.createElement is not a function angular
Get a MPS file using NEOS/GAMS web interface
Why did Tony's Arc Reactor do this?
Professor refuses to write a recommendation letter to students who haven't written a research paper with him
If every star in the universe except the Sun were destroyed, would we die?
Constant integers and constant evaluation
More than three domains hosted on the same IP address
Why did Boris Johnson call for new elections?
Round away from zero
Contractor cut joist hangers to make them fit
Why can't some airports handle heavy aircraft while others do it easily (same runway length)?
Owner keeps cutting corners and poaching workers for his other company
Supervisor wants me to support a diploma-thesis SW tool after I graduated
Infinitely many primes
How many attacks exactly do I get combining Dual Wielder feat with Two-Weapon Fighting style?
How do German speakers decide what should be on the left side of the verb?
How to make a pipe-divided tuple?
Is Sanskrit really the mother of all languages?
How to best explain that you are taking pictures in a space for practice reasons?
What is the "Brake to Exit" feature on the Boeing 777X?
How do English-speaking kids loudly request something?
Word for something that used to be popular but not anymore
Python reimplementation of Lost In Space by Tim Hartnell
How do I play this harmonic? (Guitar)
What exactly is Apple Cider
Typescript file with bang operator won't build even though tsc version is high enough
kendo-angular-dropdowns combobox.component.d.tsUnknown compiler option 'files' launching ./node_modules/.bin/ng-xi18nAngular 5 ,Three Js errorIonic 3 and Angular 4 - Karma does not run the unit tests instantly. It takes a minute or above to start. Whats causing the slowness?npm ERR! notarget No matching version found for jasmine-core@~2.9.0cannot submit a form in angular 4installation npm failed for an existing project with angular 4What is wrong with this logfile., Can anybody please point me to the right direction?Error while creating new angular application(npm ERR! 404 Not Found: @angular/animations@~7.1.0.)ERROR TypeError: this._document.createElement is not a function angular
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have an angular 4 project with this file
class DemoClass
description!: string;
If I build it with
ng build
from the project root I get
ERROR in src/app/client/medisoft-client.ts(3,16): error TS1005: '='
expected. src/app/client/medisoft-client.ts(3,17): error TS1109:
Expression expected.
removing the bang operator resolves this so it's definitely that which is the problem. The error seems like the version of type script isn't high enough but if I run
tsc --version
I get
Version 3.3.4000
which is high enough to support the bang operator. Moverover if I go to the directory with the file in and just transpile that one file i.e.
tsc --out test.js test.ts
then it build fine and I get the js output
So it looks like angular is using an older version of typescript but I'm stumped about where to look now to resolve this
Package.json file is
"name": "project-name", "version": "0.0.0", "license": "MIT", "scripts":
"ng": "ng",
"start": "ng build --base-href /Angular --deploy-url /Angular/",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e" , "private": true, "dependencies":
"@angular/animations": "^5.2.0",
"@angular/common": "^5.2.0",
"@angular/compiler": "^5.2.0",
"@angular/core": "^5.2.0",
"@angular/forms": "^5.2.0",
"@angular/http": "^5.2.0",
"@angular/platform-browser": "^5.2.0",
"@angular/platform-browser-dynamic": "^5.2.0",
"@angular/router": "^5.2.0",
"core-js": "^2.4.1",
"rxjs": "^5.5.6",
"zone.js": "^0.8.19" , "devDependencies":
"@angular/cli": "1.6.5",
"@angular/compiler-cli": "^5.2.0",
"@angular/language-service": "^5.2.0",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"codelyzer": "^4.0.1",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.1.2",
"ts-node": "~4.1.0",
"tslint": "~5.9.1",
"typescript": "^2.9.2"
angular typescript
add a comment |
I have an angular 4 project with this file
class DemoClass
description!: string;
If I build it with
ng build
from the project root I get
ERROR in src/app/client/medisoft-client.ts(3,16): error TS1005: '='
expected. src/app/client/medisoft-client.ts(3,17): error TS1109:
Expression expected.
removing the bang operator resolves this so it's definitely that which is the problem. The error seems like the version of type script isn't high enough but if I run
tsc --version
I get
Version 3.3.4000
which is high enough to support the bang operator. Moverover if I go to the directory with the file in and just transpile that one file i.e.
tsc --out test.js test.ts
then it build fine and I get the js output
So it looks like angular is using an older version of typescript but I'm stumped about where to look now to resolve this
Package.json file is
"name": "project-name", "version": "0.0.0", "license": "MIT", "scripts":
"ng": "ng",
"start": "ng build --base-href /Angular --deploy-url /Angular/",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e" , "private": true, "dependencies":
"@angular/animations": "^5.2.0",
"@angular/common": "^5.2.0",
"@angular/compiler": "^5.2.0",
"@angular/core": "^5.2.0",
"@angular/forms": "^5.2.0",
"@angular/http": "^5.2.0",
"@angular/platform-browser": "^5.2.0",
"@angular/platform-browser-dynamic": "^5.2.0",
"@angular/router": "^5.2.0",
"core-js": "^2.4.1",
"rxjs": "^5.5.6",
"zone.js": "^0.8.19" , "devDependencies":
"@angular/cli": "1.6.5",
"@angular/compiler-cli": "^5.2.0",
"@angular/language-service": "^5.2.0",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"codelyzer": "^4.0.1",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.1.2",
"ts-node": "~4.1.0",
"tslint": "~5.9.1",
"typescript": "^2.9.2"
angular typescript
1
please share your package json file
– TheParam
Mar 28 at 6:13
@TheParam - done. OK it's saying 2.9.2 which should be high enough shouldn't it. Why does tsc --version give me another version?
– Crab Bucket
Mar 28 at 6:15
add a comment |
I have an angular 4 project with this file
class DemoClass
description!: string;
If I build it with
ng build
from the project root I get
ERROR in src/app/client/medisoft-client.ts(3,16): error TS1005: '='
expected. src/app/client/medisoft-client.ts(3,17): error TS1109:
Expression expected.
removing the bang operator resolves this so it's definitely that which is the problem. The error seems like the version of type script isn't high enough but if I run
tsc --version
I get
Version 3.3.4000
which is high enough to support the bang operator. Moverover if I go to the directory with the file in and just transpile that one file i.e.
tsc --out test.js test.ts
then it build fine and I get the js output
So it looks like angular is using an older version of typescript but I'm stumped about where to look now to resolve this
Package.json file is
"name": "project-name", "version": "0.0.0", "license": "MIT", "scripts":
"ng": "ng",
"start": "ng build --base-href /Angular --deploy-url /Angular/",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e" , "private": true, "dependencies":
"@angular/animations": "^5.2.0",
"@angular/common": "^5.2.0",
"@angular/compiler": "^5.2.0",
"@angular/core": "^5.2.0",
"@angular/forms": "^5.2.0",
"@angular/http": "^5.2.0",
"@angular/platform-browser": "^5.2.0",
"@angular/platform-browser-dynamic": "^5.2.0",
"@angular/router": "^5.2.0",
"core-js": "^2.4.1",
"rxjs": "^5.5.6",
"zone.js": "^0.8.19" , "devDependencies":
"@angular/cli": "1.6.5",
"@angular/compiler-cli": "^5.2.0",
"@angular/language-service": "^5.2.0",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"codelyzer": "^4.0.1",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.1.2",
"ts-node": "~4.1.0",
"tslint": "~5.9.1",
"typescript": "^2.9.2"
angular typescript
I have an angular 4 project with this file
class DemoClass
description!: string;
If I build it with
ng build
from the project root I get
ERROR in src/app/client/medisoft-client.ts(3,16): error TS1005: '='
expected. src/app/client/medisoft-client.ts(3,17): error TS1109:
Expression expected.
removing the bang operator resolves this so it's definitely that which is the problem. The error seems like the version of type script isn't high enough but if I run
tsc --version
I get
Version 3.3.4000
which is high enough to support the bang operator. Moverover if I go to the directory with the file in and just transpile that one file i.e.
tsc --out test.js test.ts
then it build fine and I get the js output
So it looks like angular is using an older version of typescript but I'm stumped about where to look now to resolve this
Package.json file is
"name": "project-name", "version": "0.0.0", "license": "MIT", "scripts":
"ng": "ng",
"start": "ng build --base-href /Angular --deploy-url /Angular/",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e" , "private": true, "dependencies":
"@angular/animations": "^5.2.0",
"@angular/common": "^5.2.0",
"@angular/compiler": "^5.2.0",
"@angular/core": "^5.2.0",
"@angular/forms": "^5.2.0",
"@angular/http": "^5.2.0",
"@angular/platform-browser": "^5.2.0",
"@angular/platform-browser-dynamic": "^5.2.0",
"@angular/router": "^5.2.0",
"core-js": "^2.4.1",
"rxjs": "^5.5.6",
"zone.js": "^0.8.19" , "devDependencies":
"@angular/cli": "1.6.5",
"@angular/compiler-cli": "^5.2.0",
"@angular/language-service": "^5.2.0",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"codelyzer": "^4.0.1",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.1.2",
"ts-node": "~4.1.0",
"tslint": "~5.9.1",
"typescript": "^2.9.2"
angular typescript
angular typescript
edited Mar 29 at 11:43
benni_mac_b
8,0075 gold badges33 silver badges54 bronze badges
8,0075 gold badges33 silver badges54 bronze badges
asked Mar 28 at 6:12
Crab BucketCrab Bucket
5,4575 gold badges29 silver badges59 bronze badges
5,4575 gold badges29 silver badges59 bronze badges
1
please share your package json file
– TheParam
Mar 28 at 6:13
@TheParam - done. OK it's saying 2.9.2 which should be high enough shouldn't it. Why does tsc --version give me another version?
– Crab Bucket
Mar 28 at 6:15
add a comment |
1
please share your package json file
– TheParam
Mar 28 at 6:13
@TheParam - done. OK it's saying 2.9.2 which should be high enough shouldn't it. Why does tsc --version give me another version?
– Crab Bucket
Mar 28 at 6:15
1
1
please share your package json file
– TheParam
Mar 28 at 6:13
please share your package json file
– TheParam
Mar 28 at 6:13
@TheParam - done. OK it's saying 2.9.2 which should be high enough shouldn't it. Why does tsc --version give me another version?
– Crab Bucket
Mar 28 at 6:15
@TheParam - done. OK it's saying 2.9.2 which should be high enough shouldn't it. Why does tsc --version give me another version?
– Crab Bucket
Mar 28 at 6:15
add a comment |
1 Answer
1
active
oldest
votes
Your Angular project typescript version is lower than your global version. so you need to install the updated version in your angular project like below
npm install typescript@3.3.4000 --save-dev
Hope this will help!
Thanks -- tried this. Getting npm ERR! notarget No matching version found for typescript@3.3.4. npm install typescript@latest --save-dev will run though
– Crab Bucket
Mar 28 at 6:20
please check updated command
– TheParam
Mar 28 at 6:22
Thanks - angular tells me this @angular/compiler-cli@5.2.3 requires typescript@'>=2.4.2 <2.7.0' but 3.3.4000 was found instead. and it fails to buidl now for missing module reasons - Module not found: Error: Can't resolve 'C:XXXScratchTimAngularva-dilatenode_modulesbootstrapdistcssbootstrap.min.css'. I guess I need to update the cli as well
– Crab Bucket
Mar 28 at 6:24
yes you also need to update the angular-cli version as well
– TheParam
Mar 28 at 6:25
ha - node needs updating as well now . The entire pack of cards needs it
– Crab Bucket
Mar 28 at 6:47
|
show 1 more 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/4.0/"u003ecc by-sa 4.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%2f55391164%2ftypescript-file-with-bang-operator-wont-build-even-though-tsc-version-is-high-e%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
Your Angular project typescript version is lower than your global version. so you need to install the updated version in your angular project like below
npm install typescript@3.3.4000 --save-dev
Hope this will help!
Thanks -- tried this. Getting npm ERR! notarget No matching version found for typescript@3.3.4. npm install typescript@latest --save-dev will run though
– Crab Bucket
Mar 28 at 6:20
please check updated command
– TheParam
Mar 28 at 6:22
Thanks - angular tells me this @angular/compiler-cli@5.2.3 requires typescript@'>=2.4.2 <2.7.0' but 3.3.4000 was found instead. and it fails to buidl now for missing module reasons - Module not found: Error: Can't resolve 'C:XXXScratchTimAngularva-dilatenode_modulesbootstrapdistcssbootstrap.min.css'. I guess I need to update the cli as well
– Crab Bucket
Mar 28 at 6:24
yes you also need to update the angular-cli version as well
– TheParam
Mar 28 at 6:25
ha - node needs updating as well now . The entire pack of cards needs it
– Crab Bucket
Mar 28 at 6:47
|
show 1 more comment
Your Angular project typescript version is lower than your global version. so you need to install the updated version in your angular project like below
npm install typescript@3.3.4000 --save-dev
Hope this will help!
Thanks -- tried this. Getting npm ERR! notarget No matching version found for typescript@3.3.4. npm install typescript@latest --save-dev will run though
– Crab Bucket
Mar 28 at 6:20
please check updated command
– TheParam
Mar 28 at 6:22
Thanks - angular tells me this @angular/compiler-cli@5.2.3 requires typescript@'>=2.4.2 <2.7.0' but 3.3.4000 was found instead. and it fails to buidl now for missing module reasons - Module not found: Error: Can't resolve 'C:XXXScratchTimAngularva-dilatenode_modulesbootstrapdistcssbootstrap.min.css'. I guess I need to update the cli as well
– Crab Bucket
Mar 28 at 6:24
yes you also need to update the angular-cli version as well
– TheParam
Mar 28 at 6:25
ha - node needs updating as well now . The entire pack of cards needs it
– Crab Bucket
Mar 28 at 6:47
|
show 1 more comment
Your Angular project typescript version is lower than your global version. so you need to install the updated version in your angular project like below
npm install typescript@3.3.4000 --save-dev
Hope this will help!
Your Angular project typescript version is lower than your global version. so you need to install the updated version in your angular project like below
npm install typescript@3.3.4000 --save-dev
Hope this will help!
edited Mar 28 at 6:22
answered Mar 28 at 6:18
TheParamTheParam
5,8321 gold badge20 silver badges31 bronze badges
5,8321 gold badge20 silver badges31 bronze badges
Thanks -- tried this. Getting npm ERR! notarget No matching version found for typescript@3.3.4. npm install typescript@latest --save-dev will run though
– Crab Bucket
Mar 28 at 6:20
please check updated command
– TheParam
Mar 28 at 6:22
Thanks - angular tells me this @angular/compiler-cli@5.2.3 requires typescript@'>=2.4.2 <2.7.0' but 3.3.4000 was found instead. and it fails to buidl now for missing module reasons - Module not found: Error: Can't resolve 'C:XXXScratchTimAngularva-dilatenode_modulesbootstrapdistcssbootstrap.min.css'. I guess I need to update the cli as well
– Crab Bucket
Mar 28 at 6:24
yes you also need to update the angular-cli version as well
– TheParam
Mar 28 at 6:25
ha - node needs updating as well now . The entire pack of cards needs it
– Crab Bucket
Mar 28 at 6:47
|
show 1 more comment
Thanks -- tried this. Getting npm ERR! notarget No matching version found for typescript@3.3.4. npm install typescript@latest --save-dev will run though
– Crab Bucket
Mar 28 at 6:20
please check updated command
– TheParam
Mar 28 at 6:22
Thanks - angular tells me this @angular/compiler-cli@5.2.3 requires typescript@'>=2.4.2 <2.7.0' but 3.3.4000 was found instead. and it fails to buidl now for missing module reasons - Module not found: Error: Can't resolve 'C:XXXScratchTimAngularva-dilatenode_modulesbootstrapdistcssbootstrap.min.css'. I guess I need to update the cli as well
– Crab Bucket
Mar 28 at 6:24
yes you also need to update the angular-cli version as well
– TheParam
Mar 28 at 6:25
ha - node needs updating as well now . The entire pack of cards needs it
– Crab Bucket
Mar 28 at 6:47
Thanks -- tried this. Getting npm ERR! notarget No matching version found for typescript@3.3.4. npm install typescript@latest --save-dev will run though
– Crab Bucket
Mar 28 at 6:20
Thanks -- tried this. Getting npm ERR! notarget No matching version found for typescript@3.3.4. npm install typescript@latest --save-dev will run though
– Crab Bucket
Mar 28 at 6:20
please check updated command
– TheParam
Mar 28 at 6:22
please check updated command
– TheParam
Mar 28 at 6:22
Thanks - angular tells me this @angular/compiler-cli@5.2.3 requires typescript@'>=2.4.2 <2.7.0' but 3.3.4000 was found instead. and it fails to buidl now for missing module reasons - Module not found: Error: Can't resolve 'C:XXXScratchTimAngularva-dilatenode_modulesbootstrapdistcssbootstrap.min.css'. I guess I need to update the cli as well
– Crab Bucket
Mar 28 at 6:24
Thanks - angular tells me this @angular/compiler-cli@5.2.3 requires typescript@'>=2.4.2 <2.7.0' but 3.3.4000 was found instead. and it fails to buidl now for missing module reasons - Module not found: Error: Can't resolve 'C:XXXScratchTimAngularva-dilatenode_modulesbootstrapdistcssbootstrap.min.css'. I guess I need to update the cli as well
– Crab Bucket
Mar 28 at 6:24
yes you also need to update the angular-cli version as well
– TheParam
Mar 28 at 6:25
yes you also need to update the angular-cli version as well
– TheParam
Mar 28 at 6:25
ha - node needs updating as well now . The entire pack of cards needs it
– Crab Bucket
Mar 28 at 6:47
ha - node needs updating as well now . The entire pack of cards needs it
– Crab Bucket
Mar 28 at 6:47
|
show 1 more comment
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
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%2f55391164%2ftypescript-file-with-bang-operator-wont-build-even-though-tsc-version-is-high-e%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
1
please share your package json file
– TheParam
Mar 28 at 6:13
@TheParam - done. OK it's saying 2.9.2 which should be high enough shouldn't it. Why does tsc --version give me another version?
– Crab Bucket
Mar 28 at 6:15