├── .gitignore ├── README.md ├── common_words.txt ├── demo.ts ├── generate_spellcheck.ts ├── images ├── butwhy.gif ├── dog.jpeg └── tonsofwords.png ├── package.json ├── spellcheck-template.ts ├── spellcheck.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/TSpell/HEAD/README.md -------------------------------------------------------------------------------- /common_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/TSpell/HEAD/common_words.txt -------------------------------------------------------------------------------- /demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/TSpell/HEAD/demo.ts -------------------------------------------------------------------------------- /generate_spellcheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/TSpell/HEAD/generate_spellcheck.ts -------------------------------------------------------------------------------- /images/butwhy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/TSpell/HEAD/images/butwhy.gif -------------------------------------------------------------------------------- /images/dog.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/TSpell/HEAD/images/dog.jpeg -------------------------------------------------------------------------------- /images/tonsofwords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/TSpell/HEAD/images/tonsofwords.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/TSpell/HEAD/package.json -------------------------------------------------------------------------------- /spellcheck-template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/TSpell/HEAD/spellcheck-template.ts -------------------------------------------------------------------------------- /spellcheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/TSpell/HEAD/spellcheck.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/TSpell/HEAD/yarn.lock --------------------------------------------------------------------------------