├── .gitignore ├── README.md ├── bun.lockb ├── img └── tweet.png ├── package.json ├── src └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekacru/ts-init/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekacru/ts-init/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekacru/ts-init/HEAD/bun.lockb -------------------------------------------------------------------------------- /img/tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekacru/ts-init/HEAD/img/tweet.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekacru/ts-init/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekacru/ts-init/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekacru/ts-init/HEAD/tsconfig.json --------------------------------------------------------------------------------