Skip to content

Instantly share code, notes, and snippets.

View joaoazevedoJS's full-sized avatar
🔥
Focusing

João Azevedo joaoazevedoJS

🔥
Focusing
View GitHub Profile
## Architecture
```
src
├── Data
| ├── Repositories // Acess internal backend (CRUD)
| | └── Authentication
| | ├── Mocks // For test your cases
| | └── usecases // Use cases for Repository
@joaoazevedoJS
joaoazevedoJS / tsconfig.json
Last active July 5, 2020 18:21
configuration for tsconfig.json
{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"lib": [
"es6"
],
"allowJs": true,
"outDir": "./dist",
"rootDir": "./src",
{
"terminal.integrated.fontSize": 14,
"workbench.preferredHighContrastColorTheme": "Dracula",
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,