metamigo-db: build, fmt, lint

This commit is contained in:
Abel Luck 2023-03-13 11:28:50 +00:00
parent 2ffb15b1f9
commit 2a1ced5383
17 changed files with 160 additions and 125 deletions

View file

@ -1,8 +1,12 @@
{
"extends": "../tsconfig.json",
"extends": "tsconfig-link",
"compilerOptions": {
"outDir": "build/main"
"incremental": true,
"outDir": "build/main",
"rootDir": "src",
"baseUrl": "./",
"types": ["jest", "node"]
},
"include": ["**/*.ts", "**/.*.ts"],
"exclude": ["node_modules", "**/*.spec.ts", "**/*.test.ts"]
"include": ["src/**/*.ts"],
"exclude": ["node_modules/**"]
}