https://github.com/imjuni/typeorm-bigint
https://github.com/imjuni/typeorm-bigint
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/imjuni/typeorm-bigint
- Owner: imjuni
- License: mit
- Created: 2023-03-10T17:33:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-10T19:27:19.000Z (over 3 years ago)
- Last Synced: 2024-10-19T10:27:32.845Z (over 1 year ago)
- Language: TypeScript
- Size: 54.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TypeORM bigint transformer not working reproducable
## reproduce
```bash
# Clone the boilerplate:
git clone --depth=1 \
https://github.com/imjuni/typeorm-bigint.git \
typeorm-bigint
cd typeorm-bigint
npm install
# You have to change database configuration on `src/db/superHeroDs.ts` file.
npm run syn
npm run dev -- ./src/random.ts
# transformer not working
npm run dev -- ./src/select.ts
# raw working, raw object direct pass on where function
npm run dev -- ./src/select_raw.ts
```