We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04d060e commit 0842150Copy full SHA for 0842150
addon/.gitignore
@@ -25,6 +25,7 @@
25
/package.json.ember-try
26
/addon/**/*.js
27
28
+types/*.d.ts
29
*.d.ts
30
!/types/**/*.d.ts
31
*.tgz
test-apps/ember-concurrency-v2/tsconfig.json
@@ -1,6 +1,8 @@
1
{
2
"extends": "@tsconfig/ember/tsconfig.json",
3
"compilerOptions": {
4
+ // have to skipLibCheck becauseu ember-concurrency has the wrong types for ComputedProperty
5
+ "skipLibCheck": true,
6
// The combination of `baseUrl` with `paths` allows Ember's classic package
7
// layout, which is not resolvable with the Node resolution algorithm, to
8
// work with TypeScript.
0 commit comments