question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

build errors with latest ember (3.16.0) and ember-cli-typescript with new project

See original GitHub issue

Please paste the output of ember -v here

ember-cli: 3.16.0 node: 12.13.0 os: win32 x64 (windows 10)

Please paste the output of tsc -v here

tsc not found

Please paste the version of ember-cli-typescript and ember-cli-typescript-blueprints here

ember-cli-typescript@3.1.3 ember-cli-typescript-blueprints@3.0.0

Please paste your tsconfig.json and tslint.json or eslint.json (if applicable) below

My tsconfig.json
  

tsconfig.json: { “compilerOptions”: { “target”: “es2017”, “allowJs”: true, “moduleResolution”: “node”, “allowSyntheticDefaultImports”: true, “noImplicitAny”: true, “noImplicitThis”: true, “alwaysStrict”: true, “strictNullChecks”: true, “strictPropertyInitialization”: true, “noFallthroughCasesInSwitch”: true, “noUnusedLocals”: true, “noUnusedParameters”: true, “noImplicitReturns”: true, “noEmitOnError”: false, “noEmit”: true, “inlineSourceMap”: true, “inlineSources”: true, “baseUrl”: “.”, “module”: “es6”, “experimentalDecorators”: true, “paths”: { “ts-test/tests/": [ "tests/” ], “ts-test/": [ "app/” ], “": [ "types/” ] } }, “include”: [ “app//*", "tests//", "types/**/” ] }

My tslint.json or eslint.json
tslint.json:
does not exist
  

What are instructions we can follow to reproduce the issue?

Your Instructions Go Here << windows cmd ember new sample; cd ./sample # Create a new ember app ember install ember-cli-typescript # Set up typescript support ember s

Reproduction Case

–> result image

Issue Analytics

  • State:open
  • Created 4 years ago
  • Comments:6 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
eelkecommented, Apr 28, 2020

Had the same issue, and using @mydea’s suggestion worked for me.

1reaction
mydeacommented, Feb 25, 2020

Have you fixed the dependency like this:

"typescript": "~3.7.5"

Note the tilde instead of the caret? It works for me with 3.7.5 and ember 3.16.3.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Ember 3.16 Released
Today the Ember project is releasing version 3.16 of Ember.js, Ember Data, and Ember CLI. This release of Ember.js is an LTS (Long...
Read more >
tracked-built-ins - Ember Observer
new TrackedArray() should receive an array instead of variable number of arguments. This decision was due to the confusing nature of new Array() ......
Read more >
Using WebAssembly in Ember.js (Rust + wasm-pack) - mfeckie
I initialized a new project with ember new ember-wasm --yarn . Then I installed helper libraries ember install ember-cli-typescript ...
Read more >
@ember-data/private-build-infra | Yarn - Package Manager
EmberData is a lightweight reactive data library for JavaScript applications that provides composable primitives for ordering query/mutation/peek flows, ...
Read more >
Getting Started with Ember Octane: Building a Blog
Last reviewed in February 2020 with Ember Octane ... Blog index with input to create new post ... ember -v ember-cli: 3.16.0 node:...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found