Skip to content

Commit 0842150

Browse files
committed
skipLibCheck on the ember-concurrency test-app
1 parent 04d060e commit 0842150

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

addon/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
/package.json.ember-try
2626
/addon/**/*.js
2727

28+
types/*.d.ts
2829
*.d.ts
2930
!/types/**/*.d.ts
3031
*.tgz

test-apps/ember-concurrency-v2/tsconfig.json

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"extends": "@tsconfig/ember/tsconfig.json",
33
"compilerOptions": {
4+
// have to skipLibCheck becauseu ember-concurrency has the wrong types for ComputedProperty
5+
"skipLibCheck": true,
46
// The combination of `baseUrl` with `paths` allows Ember's classic package
57
// layout, which is not resolvable with the Node resolution algorithm, to
68
// work with TypeScript.

0 commit comments

Comments
 (0)