├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.adoc ├── index.ts ├── package.json ├── test ├── e2e.test.ts ├── fixtures │ └── proj-a │ │ ├── .gitignore │ │ ├── config.json │ │ ├── package.json │ │ ├── src │ │ ├── inline-file.ts │ │ ├── inline-json-obj-destructuring.ts │ │ ├── inline-json.ts │ │ └── words.txt │ │ └── tsconfig.json ├── support │ └── tapeExtensions.ts └── tsconfig.json ├── transformer.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/README.adoc -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/package.json -------------------------------------------------------------------------------- /test/e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/test/e2e.test.ts -------------------------------------------------------------------------------- /test/fixtures/proj-a/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/test/fixtures/proj-a/.gitignore -------------------------------------------------------------------------------- /test/fixtures/proj-a/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/test/fixtures/proj-a/config.json -------------------------------------------------------------------------------- /test/fixtures/proj-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/test/fixtures/proj-a/package.json -------------------------------------------------------------------------------- /test/fixtures/proj-a/src/inline-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/test/fixtures/proj-a/src/inline-file.ts -------------------------------------------------------------------------------- /test/fixtures/proj-a/src/inline-json-obj-destructuring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/test/fixtures/proj-a/src/inline-json-obj-destructuring.ts -------------------------------------------------------------------------------- /test/fixtures/proj-a/src/inline-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/test/fixtures/proj-a/src/inline-json.ts -------------------------------------------------------------------------------- /test/fixtures/proj-a/src/words.txt: -------------------------------------------------------------------------------- 1 | lorem ipsum dolor 2 | -------------------------------------------------------------------------------- /test/fixtures/proj-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/test/fixtures/proj-a/tsconfig.json -------------------------------------------------------------------------------- /test/support/tapeExtensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/test/support/tapeExtensions.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/transformer.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/ts-transformer-inline-file/HEAD/yarn.lock --------------------------------------------------------------------------------