https://github.com/lukasjhan/ts-lib-checking
https://github.com/lukasjhan/ts-lib-checking
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lukasjhan/ts-lib-checking
- Owner: lukasjhan
- Created: 2024-03-04T08:45:20.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-04T08:48:17.000Z (over 1 year ago)
- Last Synced: 2025-02-05T15:34:39.370Z (5 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
}
}
```