├── .gitignore ├── .npmignore ├── README.md ├── example ├── fold │ ├── hello.txt │ └── nested.ts ├── hello.txt ├── hi.ts ├── index.ts └── tsconfig.json ├── package.json └── src └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | temp 3 | .vscode -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | example 2 | node_modules 3 | .vscode -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabhdaware/typescript-run/HEAD/README.md -------------------------------------------------------------------------------- /example/fold/hello.txt: -------------------------------------------------------------------------------- 1 | nice -------------------------------------------------------------------------------- /example/fold/nested.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabhdaware/typescript-run/HEAD/example/fold/nested.ts -------------------------------------------------------------------------------- /example/hello.txt: -------------------------------------------------------------------------------- 1 | xyz -------------------------------------------------------------------------------- /example/hi.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | a: 3, 3 | }; 4 | -------------------------------------------------------------------------------- /example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabhdaware/typescript-run/HEAD/example/index.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabhdaware/typescript-run/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabhdaware/typescript-run/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabhdaware/typescript-run/HEAD/src/index.js --------------------------------------------------------------------------------