Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lukasjhan/ts-lib-checking
https://github.com/lukasjhan/ts-lib-checking
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lukasjhan/ts-lib-checking
- Owner: lukasjhan
- Created: 2024-03-04T08:45:20.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-03-04T08:48:17.000Z (8 months ago)
- Last Synced: 2024-04-12T05:09:13.057Z (7 months ago)
- Language: TypeScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# This project is to test and reproduce the build error of tsc(typescript)
```bash
pnpm i// you can check the index.ts is fine
pnpm testpnpm build
```### tsconfig.json
if these two option is set. bulid will failed
```json
{
"compilerOptions": {
"lib": [],
"skipLibCheck": true
}
}
```