Skip to content

Commit

Permalink
feat(trie): Adds trie
Browse files Browse the repository at this point in the history
Removes a bunch of basic scaffold code along with adding typescript
basics. This is a bad commit folks.
  • Loading branch information
blakedietz committed Feb 5, 2019
1 parent 5edd3ac commit 08db995
Show file tree
Hide file tree
Showing 10 changed files with 12,363 additions and 995 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
11.5.0
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"out": true // set this to false to include "out" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off"
"typescript.tsc.autoDetect": "off",
"standard.enable": false
}
15 changes: 15 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
};
Loading

0 comments on commit 08db995

Please sign in to comment.