├── .editorconfig ├── .gitattributes ├── .gitignore ├── README.md ├── example ├── foo.js ├── foo.ts ├── tsconfig.json └── tsconfigother.json ├── package.json ├── src └── tsc-transpile-only.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cspotcode/typescript-transpile-only/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cspotcode/typescript-transpile-only/HEAD/README.md -------------------------------------------------------------------------------- /example/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cspotcode/typescript-transpile-only/HEAD/example/foo.js -------------------------------------------------------------------------------- /example/foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cspotcode/typescript-transpile-only/HEAD/example/foo.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cspotcode/typescript-transpile-only/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/tsconfigother.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cspotcode/typescript-transpile-only/HEAD/example/tsconfigother.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cspotcode/typescript-transpile-only/HEAD/package.json -------------------------------------------------------------------------------- /src/tsc-transpile-only.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cspotcode/typescript-transpile-only/HEAD/src/tsc-transpile-only.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cspotcode/typescript-transpile-only/HEAD/tsconfig.json --------------------------------------------------------------------------------