feat: added seed

This commit is contained in:
2023-07-05 22:43:48 -03:00
parent 2d0f960d49
commit 201f55a1b8
22 changed files with 204 additions and 34 deletions

View File

@@ -1,18 +1,12 @@
{
"extends": "../../tsconfig.json",
"files": [
"../server/app.ts"
],
"files": ["../server/app.ts"],
"compilerOptions": {
"rootDir": "../",
"composite": true,
"target": "ESNext",
"useDefineForClassFields": true,
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
@@ -27,9 +21,7 @@
"incremental": true,
"baseUrl": ".",
"paths": {
"@/*": [
"./*"
]
"@/*": ["./*"]
},
"plugins": [
{
@@ -51,8 +43,5 @@
"path": "./tsconfig.node.json"
}
],
"exclude": [
"node_modules",
"../server/app.ts"
]
"exclude": ["node_modules"]
}