├── .github └── workflows │ └── test.yaml ├── .gitignore ├── .prettierrc ├── .travis.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── _config.yml ├── index.md └── modules │ ├── index.md │ └── index.ts.md ├── examples └── json-schema.ts ├── jest.config.js ├── package.json ├── src └── index.ts ├── test ├── getNodeDependencies.ts ├── json-schema.ts ├── printRuntime.ts ├── printStatic.ts ├── sort.ts └── tsconfig.json ├── tsconfig.json └── tslint.json /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | node_modules 3 | lib 4 | dev 5 | coverage 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/modules/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/docs/modules/index.md -------------------------------------------------------------------------------- /docs/modules/index.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/docs/modules/index.ts.md -------------------------------------------------------------------------------- /examples/json-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/examples/json-schema.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/getNodeDependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/test/getNodeDependencies.ts -------------------------------------------------------------------------------- /test/json-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/test/json-schema.ts -------------------------------------------------------------------------------- /test/printRuntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/test/printRuntime.ts -------------------------------------------------------------------------------- /test/printStatic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/test/printStatic.ts -------------------------------------------------------------------------------- /test/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/test/sort.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/io-ts-codegen/HEAD/tslint.json --------------------------------------------------------------------------------