Skip to content

Commit

Permalink
Add some vscode nonsense
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgodbolt committed Jun 1, 2024
1 parent 8a0e537 commit 05b63f5
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
13 changes: 13 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ES2020",
"strictNullChecks": true,
"strictFunctionTypes": true
},
"exclude": [
"node_modules",
"**/node_modules/*"
]
}
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,8 @@
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{css,md}": "prettier --write"
},
"mocha": {
"spec": ["tests/unit/**/*.js"]
}
}

0 comments on commit 05b63f5

Please sign in to comment.