├── .github ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ ├── Documentation.md │ └── Feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── _config.yml ├── index.md └── modules │ ├── At.ts.md │ ├── At │ ├── ReadonlyRecord.ts.md │ ├── ReadonlySet.ts.md │ ├── Record.ts.md │ └── Set.ts.md │ ├── Either.ts.md │ ├── Index │ ├── Array.ts.md │ ├── NonEmptyArray.ts.md │ ├── ReadonlyArray.ts.md │ ├── ReadonlyNonEmptyArray.ts.md │ ├── ReadonlyRecord.ts.md │ └── Record.ts.md │ ├── Iso.ts.md │ ├── Ix.ts.md │ ├── Lens.ts.md │ ├── Optional.ts.md │ ├── Prism.ts.md │ ├── Traversal.ts.md │ ├── index.md │ ├── index.ts.md │ └── internal.ts.md ├── dtslint ├── index.d.ts └── ts3.5 │ ├── Iso.ts │ ├── Lens.ts │ ├── Optional.ts │ ├── Prism.ts │ ├── Traversal.ts │ ├── index.d.ts │ ├── index.ts │ ├── tsconfig.json │ └── tslint.json ├── examples ├── Fold.ts ├── Iso.ts ├── Lens.ts ├── Optional.ts ├── Prism.ts ├── Traversal.ts ├── introduction.ts └── tsconfig.json ├── jest.config.js ├── package.json ├── perf └── 119.ts ├── scripts ├── FileSystem.ts ├── build.ts ├── pre-publish.ts ├── release-as-next.ts ├── release.ts └── run.ts ├── src ├── At.ts ├── At │ ├── ReadonlyRecord.ts │ ├── ReadonlySet.ts │ ├── Record.ts │ └── Set.ts ├── Either.ts ├── Index │ ├── Array.ts │ ├── NonEmptyArray.ts │ ├── ReadonlyArray.ts │ ├── ReadonlyNonEmptyArray.ts │ ├── ReadonlyRecord.ts │ └── Record.ts ├── Iso.ts ├── Ix.ts ├── Lens.ts ├── Optional.ts ├── Prism.ts ├── Traversal.ts ├── index.ts └── internal.ts ├── test ├── 2.2 │ ├── At.ts │ ├── Either.ts │ ├── Fold.ts │ ├── Getter.ts │ ├── Index.ts │ ├── Iso.ts │ ├── Lens.ts │ ├── Optional.ts │ ├── Prism.ts │ ├── Setter.ts │ ├── Traversal.ts │ └── conversions.ts ├── At.ts ├── Iso.ts ├── Ix.ts ├── Lens.ts ├── Optional.ts ├── Prism.ts ├── Traversal.ts └── util.ts ├── tsconfig.build-es6.json ├── tsconfig.build.json ├── tsconfig.json └── tslint.json /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/.github/ISSUE_TEMPLATE/Documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | node_modules 3 | lib 4 | es6 5 | dev 6 | coverage 7 | dist 8 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/modules/At.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/At.ts.md -------------------------------------------------------------------------------- /docs/modules/At/ReadonlyRecord.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/At/ReadonlyRecord.ts.md -------------------------------------------------------------------------------- /docs/modules/At/ReadonlySet.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/At/ReadonlySet.ts.md -------------------------------------------------------------------------------- /docs/modules/At/Record.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/At/Record.ts.md -------------------------------------------------------------------------------- /docs/modules/At/Set.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/At/Set.ts.md -------------------------------------------------------------------------------- /docs/modules/Either.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/Either.ts.md -------------------------------------------------------------------------------- /docs/modules/Index/Array.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/Index/Array.ts.md -------------------------------------------------------------------------------- /docs/modules/Index/NonEmptyArray.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/Index/NonEmptyArray.ts.md -------------------------------------------------------------------------------- /docs/modules/Index/ReadonlyArray.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/Index/ReadonlyArray.ts.md -------------------------------------------------------------------------------- /docs/modules/Index/ReadonlyNonEmptyArray.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/Index/ReadonlyNonEmptyArray.ts.md -------------------------------------------------------------------------------- /docs/modules/Index/ReadonlyRecord.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/Index/ReadonlyRecord.ts.md -------------------------------------------------------------------------------- /docs/modules/Index/Record.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/Index/Record.ts.md -------------------------------------------------------------------------------- /docs/modules/Iso.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/Iso.ts.md -------------------------------------------------------------------------------- /docs/modules/Ix.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/Ix.ts.md -------------------------------------------------------------------------------- /docs/modules/Lens.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/Lens.ts.md -------------------------------------------------------------------------------- /docs/modules/Optional.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/Optional.ts.md -------------------------------------------------------------------------------- /docs/modules/Prism.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/Prism.ts.md -------------------------------------------------------------------------------- /docs/modules/Traversal.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/Traversal.ts.md -------------------------------------------------------------------------------- /docs/modules/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/index.md -------------------------------------------------------------------------------- /docs/modules/index.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/index.ts.md -------------------------------------------------------------------------------- /docs/modules/internal.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/docs/modules/internal.ts.md -------------------------------------------------------------------------------- /dtslint/index.d.ts: -------------------------------------------------------------------------------- 1 | // TypeScript Version: 3.5 2 | -------------------------------------------------------------------------------- /dtslint/ts3.5/Iso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/dtslint/ts3.5/Iso.ts -------------------------------------------------------------------------------- /dtslint/ts3.5/Lens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/dtslint/ts3.5/Lens.ts -------------------------------------------------------------------------------- /dtslint/ts3.5/Optional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/dtslint/ts3.5/Optional.ts -------------------------------------------------------------------------------- /dtslint/ts3.5/Prism.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/dtslint/ts3.5/Prism.ts -------------------------------------------------------------------------------- /dtslint/ts3.5/Traversal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/dtslint/ts3.5/Traversal.ts -------------------------------------------------------------------------------- /dtslint/ts3.5/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dtslint/ts3.5/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/dtslint/ts3.5/index.ts -------------------------------------------------------------------------------- /dtslint/ts3.5/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/dtslint/ts3.5/tsconfig.json -------------------------------------------------------------------------------- /dtslint/ts3.5/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/dtslint/ts3.5/tslint.json -------------------------------------------------------------------------------- /examples/Fold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/examples/Fold.ts -------------------------------------------------------------------------------- /examples/Iso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/examples/Iso.ts -------------------------------------------------------------------------------- /examples/Lens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/examples/Lens.ts -------------------------------------------------------------------------------- /examples/Optional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/examples/Optional.ts -------------------------------------------------------------------------------- /examples/Prism.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/examples/Prism.ts -------------------------------------------------------------------------------- /examples/Traversal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/examples/Traversal.ts -------------------------------------------------------------------------------- /examples/introduction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/examples/introduction.ts -------------------------------------------------------------------------------- /examples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/examples/tsconfig.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/package.json -------------------------------------------------------------------------------- /perf/119.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/perf/119.ts -------------------------------------------------------------------------------- /scripts/FileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/scripts/FileSystem.ts -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/scripts/build.ts -------------------------------------------------------------------------------- /scripts/pre-publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/scripts/pre-publish.ts -------------------------------------------------------------------------------- /scripts/release-as-next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/scripts/release-as-next.ts -------------------------------------------------------------------------------- /scripts/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/scripts/release.ts -------------------------------------------------------------------------------- /scripts/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/scripts/run.ts -------------------------------------------------------------------------------- /src/At.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/At.ts -------------------------------------------------------------------------------- /src/At/ReadonlyRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/At/ReadonlyRecord.ts -------------------------------------------------------------------------------- /src/At/ReadonlySet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/At/ReadonlySet.ts -------------------------------------------------------------------------------- /src/At/Record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/At/Record.ts -------------------------------------------------------------------------------- /src/At/Set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/At/Set.ts -------------------------------------------------------------------------------- /src/Either.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/Either.ts -------------------------------------------------------------------------------- /src/Index/Array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/Index/Array.ts -------------------------------------------------------------------------------- /src/Index/NonEmptyArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/Index/NonEmptyArray.ts -------------------------------------------------------------------------------- /src/Index/ReadonlyArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/Index/ReadonlyArray.ts -------------------------------------------------------------------------------- /src/Index/ReadonlyNonEmptyArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/Index/ReadonlyNonEmptyArray.ts -------------------------------------------------------------------------------- /src/Index/ReadonlyRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/Index/ReadonlyRecord.ts -------------------------------------------------------------------------------- /src/Index/Record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/Index/Record.ts -------------------------------------------------------------------------------- /src/Iso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/Iso.ts -------------------------------------------------------------------------------- /src/Ix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/Ix.ts -------------------------------------------------------------------------------- /src/Lens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/Lens.ts -------------------------------------------------------------------------------- /src/Optional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/Optional.ts -------------------------------------------------------------------------------- /src/Prism.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/Prism.ts -------------------------------------------------------------------------------- /src/Traversal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/Traversal.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/src/internal.ts -------------------------------------------------------------------------------- /test/2.2/At.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/2.2/At.ts -------------------------------------------------------------------------------- /test/2.2/Either.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/2.2/Either.ts -------------------------------------------------------------------------------- /test/2.2/Fold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/2.2/Fold.ts -------------------------------------------------------------------------------- /test/2.2/Getter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/2.2/Getter.ts -------------------------------------------------------------------------------- /test/2.2/Index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/2.2/Index.ts -------------------------------------------------------------------------------- /test/2.2/Iso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/2.2/Iso.ts -------------------------------------------------------------------------------- /test/2.2/Lens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/2.2/Lens.ts -------------------------------------------------------------------------------- /test/2.2/Optional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/2.2/Optional.ts -------------------------------------------------------------------------------- /test/2.2/Prism.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/2.2/Prism.ts -------------------------------------------------------------------------------- /test/2.2/Setter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/2.2/Setter.ts -------------------------------------------------------------------------------- /test/2.2/Traversal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/2.2/Traversal.ts -------------------------------------------------------------------------------- /test/2.2/conversions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/2.2/conversions.ts -------------------------------------------------------------------------------- /test/At.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/At.ts -------------------------------------------------------------------------------- /test/Iso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/Iso.ts -------------------------------------------------------------------------------- /test/Ix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/Ix.ts -------------------------------------------------------------------------------- /test/Lens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/Lens.ts -------------------------------------------------------------------------------- /test/Optional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/Optional.ts -------------------------------------------------------------------------------- /test/Prism.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/Prism.ts -------------------------------------------------------------------------------- /test/Traversal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/Traversal.ts -------------------------------------------------------------------------------- /test/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/test/util.ts -------------------------------------------------------------------------------- /tsconfig.build-es6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/tsconfig.build-es6.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/monocle-ts/HEAD/tslint.json --------------------------------------------------------------------------------