budibase/packages/worker/tsconfig.json

13 lines
258 B
JSON
Raw Normal View History

2022-01-19 23:44:17 +01:00
{
2022-06-09 13:33:10 +02:00
"extends": "./tsconfig.build.json",
2022-01-19 23:44:17 +01:00
"compilerOptions": {
2022-06-09 13:33:10 +02:00
"composite": true,
2023-05-25 11:49:18 +02:00
"baseUrl": "."
2022-01-19 23:44:17 +01:00
},
2024-01-04 13:57:10 +01:00
"ts-node": {
"require": ["tsconfig-paths/register"]
},
2023-08-01 12:35:17 +02:00
"include": ["src/**/*", "__mocks__/**/*"],
"exclude": ["node_modules", "dist"]
}