├── .gitignore ├── .prettierrc ├── LICENCE ├── README.md ├── cli.js ├── docs ├── README.md └── man.text ├── index.js ├── package.json ├── parse-template.js ├── parse.js ├── test ├── output.ts ├── template.js └── test-file.js ├── transform.js ├── type-deduction.js └── util.js /.gitignore: -------------------------------------------------------------------------------- 1 | .tag* 2 | node_modules 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/cli.js -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | More docs coming soon :) -------------------------------------------------------------------------------- /docs/man.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/docs/man.text -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/package.json -------------------------------------------------------------------------------- /parse-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/parse-template.js -------------------------------------------------------------------------------- /parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/parse.js -------------------------------------------------------------------------------- /test/output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/test/output.ts -------------------------------------------------------------------------------- /test/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/test/template.js -------------------------------------------------------------------------------- /test/test-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/test/test-file.js -------------------------------------------------------------------------------- /transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/transform.js -------------------------------------------------------------------------------- /type-deduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/type-deduction.js -------------------------------------------------------------------------------- /util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoecarver/typescript-transform/HEAD/util.js --------------------------------------------------------------------------------