1
0
Fork 0
mirror of synced 2024-06-29 03:20:34 +12:00
budibase/packages/worker/tsconfig.json

29 lines
591 B
JSON
Raw Normal View History

2022-01-20 11:44:17 +13:00
{
2022-06-09 23:33:10 +12:00
"extends": "./tsconfig.build.json",
2022-01-20 11:44:17 +13:00
"compilerOptions": {
2022-06-09 23:33:10 +12:00
"composite": true,
"declaration": true,
"sourceMap": true,
"baseUrl": ".",
2022-06-09 23:33:10 +12:00
"paths": {
"@budibase/types": ["../types/src"],
"@budibase/backend-core": ["../backend-core/src"],
"@budibase/backend-core/*": ["../backend-core/*"]
2022-06-09 23:33:10 +12:00
}
2022-01-20 11:44:17 +13:00
},
"ts-node": {
"require": ["tsconfig-paths/register"]
},
"references": [
{ "path": "../types" },
{ "path": "../backend-core" },
],
"include": [
"src/**/*",
"package.json"
2022-01-20 11:44:17 +13:00
],
"exclude": [
"node_modules",
2022-06-09 23:33:10 +12:00
"dist"
2022-01-20 11:44:17 +13:00
]
2022-06-09 23:33:10 +12:00
}