1
0
Fork 0
mirror of synced 2024-06-30 20:10:54 +12:00
budibase/packages/worker/tsconfig.build.json

32 lines
783 B
JSON
Raw Normal View History

2022-06-09 23:33:10 +12:00
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": ["es2020"],
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"incremental": true,
2023-03-03 22:23:35 +13:00
"types": ["node", "jest"],
"outDir": "dist",
2023-03-03 22:23:35 +13:00
"skipLibCheck": true,
"paths": {
"@budibase/types": ["../types/src"],
"@budibase/backend-core": ["../backend-core/src"],
"@budibase/backend-core/*": ["../backend-core/*"],
2023-05-03 22:47:21 +12:00
"@budibase/shared-core": ["../shared-core/src"],
2024-02-22 07:57:31 +13:00
"@budibase/pro": ["../pro/src"],
"@budibase/string-templates": ["../string-templates/src"]
2023-03-03 22:23:35 +13:00
}
2022-06-09 23:33:10 +12:00
},
2023-03-03 22:23:35 +13:00
"include": ["src/**/*"],
2022-06-09 23:33:10 +12:00
"exclude": [
"node_modules",
"dist",
"src/tests",
"**/*.spec.js",
"**/*.spec.ts"
2022-06-09 23:33:10 +12:00
]
2023-03-03 22:23:35 +13:00
}