├── .gitignore ├── LICENSE ├── README.md ├── demo.ts ├── index.ts ├── package.json ├── pnpm-lock.yaml └── register.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombshell-dev/ansx/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombshell-dev/ansx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombshell-dev/ansx/HEAD/README.md -------------------------------------------------------------------------------- /demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombshell-dev/ansx/HEAD/demo.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombshell-dev/ansx/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombshell-dev/ansx/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombshell-dev/ansx/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /register.js: -------------------------------------------------------------------------------- 1 | import { register } from 'ts-node/esm' 2 | 3 | 4 | --------------------------------------------------------------------------------