Extracts the API implementation to a package so we can potentially reuse it across different applications in the event that we move off using a Next.js API route. Additionally tidies up the tokens page and form to be more simplified.
14 lines
468 B
JSON
14 lines
468 B
JSON
{
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
"eslint.validate": ["typescript", "typescriptreact", "javascript", "javascriptreact"],
|
|
"javascript.preferences.importModuleSpecifier": "non-relative",
|
|
"javascript.preferences.useAliasesForRenames": false,
|
|
"typescript.enablePromptUseWorkspaceTsdk": true,
|
|
"files.eol": "\n",
|
|
"editor.tabSize": 2,
|
|
"editor.insertSpaces": true
|
|
}
|