├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── bin ├── ts-eager-paths.sh └── ts-eager.sh ├── package.json ├── register-paths.js ├── register.js ├── test ├── basic │ ├── test.ts │ └── tsconfig.json ├── decorators │ ├── test.ts │ └── tsconfig.json ├── paths │ ├── lib │ │ └── file1.ts │ ├── test.ts │ └── tsconfig.json └── test.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/README.md -------------------------------------------------------------------------------- /bin/ts-eager-paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/bin/ts-eager-paths.sh -------------------------------------------------------------------------------- /bin/ts-eager.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec node -r ts-eager/register ${1+"$@"} 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/package.json -------------------------------------------------------------------------------- /register-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/register-paths.js -------------------------------------------------------------------------------- /register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/register.js -------------------------------------------------------------------------------- /test/basic/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/test/basic/test.ts -------------------------------------------------------------------------------- /test/basic/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/test/basic/tsconfig.json -------------------------------------------------------------------------------- /test/decorators/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/test/decorators/test.ts -------------------------------------------------------------------------------- /test/decorators/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/test/decorators/tsconfig.json -------------------------------------------------------------------------------- /test/paths/lib/file1.ts: -------------------------------------------------------------------------------- 1 | export const a = 1 2 | -------------------------------------------------------------------------------- /test/paths/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/test/paths/test.ts -------------------------------------------------------------------------------- /test/paths/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/test/paths/tsconfig.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/test/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bustle/ts-eager/HEAD/tsconfig.json --------------------------------------------------------------------------------