This commit is contained in:
SaraJane
2025-12-30 13:07:28 +00:00
commit 93e3f09667
95 changed files with 20233 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{
"recommendations": [
"EditorConfig.EditorConfig",
"dotenv.dotenv-vscode",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"krysenlo.vite-plugin-eslint-problemmatcher",
"ms-playwright.playwright",
"Orta.vscode-jest",
"bradlc.vscode-tailwindcss",
"csstools.postcss",
]
}

View File

@ -0,0 +1,68 @@
{
"configurations": [
{
"type": "msedge",
"request": "launch",
"name": "Run (Edge)",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}",
"presentation": {
"hidden": false,
"group": "2. Web"
}
},
{
"type": "chrome",
"request": "launch",
"name": "Run (Chrome)",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}",
"presentation": {
"hidden": false,
"group": "2. Web"
}
},
{
"type": "firefox",
"request": "launch",
"name": "Run (Firefox)",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}",
"presentation": {
"hidden": false,
"group": "2. Web"
}
},
{
"name": "Run dApp",
"type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"cwd": "${workspaceRoot}",
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**", "node_modules/**"],
"presentation": {
"hidden": false,
"group": "1. Run Project",
"order": 1
}
},
{
"name": "Run dApp (+ LocalNet)",
"type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"cwd": "${workspaceRoot}",
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**", "node_modules/**"],
"preLaunchTask": "Start AlgoKit LocalNet",
"presentation": {
"hidden": false,
"group": "1. Run Project",
"order": 1
}
}
]
}

View File

@ -0,0 +1,13 @@
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"dotenv.enableAutocloaking": false,
"jest.autoRun": {
"watch": false,
"onSave": "test-file"
}
}

View File

@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Start AlgoKit LocalNet",
"command": "algokit",
"args": ["localnet", "start"],
"type": "shell",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
}
]
}