budibase/packages/server/tsconfig.build.json

20 lines
420 B
JSON
Raw Normal View History

{
2024-12-05 17:09:05 +01:00
"extends": "../../tsconfig.build.json",
2024-12-09 11:25:44 +01:00
"compilerOptions": {
2024-12-09 12:48:52 +01:00
"target": "es2020",
2024-12-09 11:25:44 +01:00
"allowArbitraryExtensions": true,
"isolatedModules": false
},
2023-03-03 10:23:35 +01:00
"include": ["src/**/*"],
"exclude": [
"node_modules",
2022-06-09 13:33:10 +02:00
"dist",
"src/tests",
"src/api/routes/tests/utilities",
2023-02-16 17:44:50 +01:00
"src/api/routes/public/tests/utils.ts",
"src/automations/tests/utilities",
2022-06-09 13:33:10 +02:00
"**/*.spec.ts",
"**/*.spec.js"
]
}