Refactor metamigo-config

This commit is contained in:
Abel Luck 2023-03-13 11:14:39 +00:00
parent b3d8c3918e
commit 2ffb15b1f9
2 changed files with 7 additions and 3 deletions

View file

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