├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── ARTICLE.md ├── README.md ├── article.pdf ├── package.json ├── src └── main.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | .gitignore 3 | .vscode 4 | node_modules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WimJongeneel/ts-pattern-matching/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ARTICLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WimJongeneel/ts-pattern-matching/HEAD/ARTICLE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WimJongeneel/ts-pattern-matching/HEAD/README.md -------------------------------------------------------------------------------- /article.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WimJongeneel/ts-pattern-matching/HEAD/article.pdf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WimJongeneel/ts-pattern-matching/HEAD/package.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WimJongeneel/ts-pattern-matching/HEAD/src/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WimJongeneel/ts-pattern-matching/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WimJongeneel/ts-pattern-matching/HEAD/yarn.lock --------------------------------------------------------------------------------