build errors with latest ember (3.16.0) and ember-cli-typescript with new project
See original GitHub issuePlease 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
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (2 by maintainers)
Had the same issue, and using @mydea’s suggestion worked for me.
Have you fixed the dependency like this:
Note the tilde instead of the caret? It works for me with 3.7.5 and ember 3.16.3.