Skip to content

Commit

Permalink
let tsc use latest source code of workspace packages
Browse files Browse the repository at this point in the history
* fix yarn releases
  • Loading branch information
ianhe8x committed Dec 16, 2020
1 parent f4728f0 commit 4cb9e39
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 65 deletions.
55 changes: 55 additions & 0 deletions .yarn/releases/yarn-2.4.0.cjs

Large diffs are not rendered by default.

55 changes: 0 additions & 55 deletions .yarn/releases/yarn-berry.js

This file was deleted.

10 changes: 1 addition & 9 deletions packages/node/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,7 @@
"compilerOptions": {
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"paths": {
"@subql/common": ["../common/src"],
"@subql/common/*": ["../common/src/*"],
"@subql/types": ["../types/src"],
"@subql/types/*": ["../types/src/*"]
}
"outDir": "./dist"
},
"include": ["src/**/*"]
}
9 changes: 8 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,14 @@
"declaration": true,
"sourceMap": true,
"inlineSources": true,
"skipLibCheck": true
"skipLibCheck": true,
"incremental": true,
"paths": {
"@subql/common": ["packages/common/src"],
"@subql/common/*": ["packages/common/src/*"],
"@subql/types": ["packages/types/src"],
"@subql/types/*": ["packages/types/src/*"]
}
},
"include": ["packages/**/*"],
"exclude": ["**/node_modules/**"],
Expand Down

0 comments on commit 4cb9e39

Please sign in to comment.