1
0
Fork 0
mirror of synced 2024-07-03 21:40:55 +12:00
budibase/packages/worker/tsconfig.json

13 lines
258 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,
2023-05-25 21:49:18 +12:00
"baseUrl": "."
2022-01-20 11:44:17 +13:00
},
2024-01-05 01:57:10 +13:00
"ts-node": {
"require": ["tsconfig-paths/register"]
},
2023-08-01 22:35:17 +12:00
"include": ["src/**/*", "__mocks__/**/*"],
"exclude": ["node_modules", "dist"]
}