1
0
Fork 0
mirror of synced 2024-07-06 15:00:49 +12:00
budibase/packages/server/tsconfig.build.json

37 lines
966 B
JSON
Raw Normal View History

{
2022-06-09 23:33:10 +12:00
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": ["es2020"],
2022-06-09 23:33:10 +12:00
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"incremental": true,
2023-03-03 22:23:35 +13:00
"types": ["node", "jest"],
"outDir": "dist/src",
2023-03-03 22:23:35 +13:00
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@budibase/types": ["../types/src"],
"@budibase/backend-core": ["../backend-core/src"],
"@budibase/backend-core/*": ["../backend-core/*"],
2023-05-03 22:45:08 +12:00
"@budibase/shared-core": ["../shared-core/src"],
2023-11-25 00:57:09 +13:00
"@budibase/pro": ["../pro/src"],
"@budibase/string-templates": ["../string-templates/src"]
},
"allowArbitraryExtensions": true
2022-06-09 23:33:10 +12:00
},
2023-03-03 22:23:35 +13:00
"include": ["src/**/*"],
"exclude": [
"node_modules",
2022-06-09 23:33:10 +12:00
"dist",
"src/tests",
"src/api/routes/tests/utilities",
2023-02-17 05:44:50 +13:00
"src/api/routes/public/tests/utils.ts",
"src/automations/tests/utilities",
2022-06-09 23:33:10 +12:00
"**/*.spec.ts",
"**/*.spec.js"
]
}