├── .gitignore ├── README.md ├── index.ts ├── package.json ├── prepare-release.sh ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timocov/parallel-typescript/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timocov/parallel-typescript/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timocov/parallel-typescript/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timocov/parallel-typescript/HEAD/package.json -------------------------------------------------------------------------------- /prepare-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timocov/parallel-typescript/HEAD/prepare-release.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timocov/parallel-typescript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timocov/parallel-typescript/HEAD/tslint.json --------------------------------------------------------------------------------