-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2bfe866
commit 1fb2344
Showing
53 changed files
with
7,970 additions
and
1,596 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
VITE_API_BASE_URL=http://localhost:3000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,16 @@ | ||
# Solve Documentação (texto) | ||
|
||
|
||
## Issues | ||
|
||
- Resolve (# numero ) | ||
|
||
## Descrição | ||
|
||
Descrição | ||
|
||
## Tipos de mudança | ||
|
||
- [ ] Bugfix | ||
- [ ] Melhoria de funcionalidade | ||
- [ ] Nova funcionalidade | ||
- [] Documentação | ||
|
||
## Checklist | ||
|
||
- [] Lint e testes passaram localmente com minhas mudanças | ||
- [] Eu adicionei testes que provam que minha correção é eficaz ou que minha feature funciona | ||
- [] Adicionei informações necessárias na documentação (se precisar) | ||
|
||
## Observações adicionais | ||
|
||
Nenhuma constatação |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
{ | ||
"trailingComma": "all", | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": true, | ||
"printWidth": 120, | ||
"bracketSpacing": true, | ||
"endOfLine": "lf" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,13 @@ | ||
import "@testing-library/jest-dom"; | ||
|
||
if ( | ||
typeof globalThis.TextEncoder === "undefined" || | ||
typeof globalThis.TextDecoder === "undefined" | ||
) { | ||
const utils = require("util"); | ||
globalThis.TextEncoder = utils.TextEncoder; | ||
globalThis.TextDecoder = utils.TextDecoder; | ||
globalThis.Uint8Array = Uint8Array; | ||
} | ||
|
||
global.structuredClone = (val) => JSON.parse(JSON.stringify(val)) |
Oops, something went wrong.