├── .eslintrc.json ├── .github └── workflows │ ├── main.yml │ └── publish.yml ├── .gitignore ├── .npmrc ├── .prettierrc.json ├── LICENSE ├── README.md ├── package.json ├── src └── index.ts ├── test ├── helpers │ └── vitest-fp-ts.ts └── index.test.ts ├── tsconfig.build-es6.json ├── tsconfig.build.json └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeirola/io-ts-promise/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeirola/io-ts-promise/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeirola/io-ts-promise/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | es6/ 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | lockfile-version = 1 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeirola/io-ts-promise/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeirola/io-ts-promise/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeirola/io-ts-promise/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeirola/io-ts-promise/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeirola/io-ts-promise/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/helpers/vitest-fp-ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeirola/io-ts-promise/HEAD/test/helpers/vitest-fp-ts.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeirola/io-ts-promise/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /tsconfig.build-es6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeirola/io-ts-promise/HEAD/tsconfig.build-es6.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeirola/io-ts-promise/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeirola/io-ts-promise/HEAD/tsconfig.json --------------------------------------------------------------------------------