We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e8c4a3e + 763c37b commit 45ee73bCopy full SHA for 45ee73b
.github/workflows/ci.yml
@@ -30,6 +30,7 @@ jobs:
30
run: pnpm install
31
# TODO: is this manual build step actually needed?
32
# `prepack` hook _should_ run but doesn't seem to.
33
+ - run: pnpm run type-check
34
- run: pnpm run build
35
- uses: changesets/action@v1
36
if: ${{ github.event_name != 'pull_request' }}
tsconfig.json
@@ -7,7 +7,10 @@
7
"strict": true,
8
"esModuleInterop": true,
9
"forceConsistentCasingInFileNames": true,
10
- "skipLibCheck": true
+ "skipLibCheck": true,
11
+ "paths": {
12
+ "@clack/core": ["./packages/core/src"]
13
+ }
14
},
15
"include": ["packages"]
16
}
0 commit comments