Skip to content

Commit 7fdbed6

Browse files
authored
Merge pull request #248 from idris-hackers/convert-to-typescript
convert to TypeScript
2 parents 0355b92 + 1ecd4b9 commit 7fdbed6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+2929
-1716
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.DS_Store
22
npm-debug.log
33
node_modules
4+
dist/

.prettierrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"arrowParens": "always",
3+
"bracketSpacing": true,
4+
"jsxBracketSameLine": false,
5+
"jsxSingleQuote": false,
6+
"printWidth": 80,
7+
"quoteProps": "as-needed",
8+
"semi": false,
9+
"singleQuote": true,
10+
"tabWidth": 4,
11+
"trailingComma": "all",
12+
"useTabs": false
13+
}

.vscode/settings.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"[typescript]": {
3+
"editor.formatOnSave": true
4+
},
5+
"[typescriptreact]": {
6+
"editor.formatOnSave": true
7+
},
8+
"[json]": {
9+
"editor.formatOnSave": true
10+
}
11+
}

0 commit comments

Comments
 (0)