Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
feat: make generated context object constant
Browse files Browse the repository at this point in the history
  • Loading branch information
pevisscher authored Jan 18, 2024
1 parent e7c8746 commit ab4fa20
Show file tree
Hide file tree
Showing 5 changed files with 1,363 additions and 1,647 deletions.
36 changes: 15 additions & 21 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@
"[json]": {
"editor.tabSize": 2
},
"debug.javascript.terminalOptions": {
"remoteRoot": null,
"skipFiles": ["<node_internals>/**"],
"sourceMaps": true
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "always"
},
"editor.formatOnSave": true,
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?",
Expand All @@ -12,38 +17,27 @@
"eslint.validate": ["javascript", "typescript"],
"files.eol": "\n",
"files.exclude": {
"**/.coverage": true,
"**/.dist": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.husky": true,
"**/.svn": true,
"**/CVS": true,
"**/.coverage": true,
"**/.husky": true,
"**/.dist": true,
"src/**/*.d.ts": true,
"**/node_modules": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/.coverage/*/**": true,
"**/.dist/**": true,
"src/**/*.d.ts": true,
"**/node_modules/*/**": true
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"src/**/*.d.ts": true
},
"typescript.format.semicolons": "remove",
"typescript.implementationsCodeLens.enabled": true,
"typescript.inlayHints.enumMemberValues.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": false,
"typescript.inlayHints.parameterNames.enabled": "literals",
"typescript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": true,
"typescript.referencesCodeLens.enabled": true,
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.preferences.autoImportFileExcludePatterns": ["**/index.ts"],
"debug.javascript.terminalOptions": {
"skipFiles": ["<node_internals>/**"],
"sourceMaps": true,
"remoteRoot": null
},
"debug.javascript.autoAttachFilter": "smart"
"typescript.referencesCodeLens.enabled": true,
"typescript.tsdk": "./node_modules/typescript/lib"
}
Loading

0 comments on commit ab4fa20

Please sign in to comment.