1
0
Fork 0
mirror of synced 2024-08-14 17:42:01 +12:00
budibase/packages/worker/tsconfig.build.json

30 lines
691 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/*"],
"@budibase/pro": ["../../../budibase-pro/packages/pro/src"]
}
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
}