2022-03-22 01:23:22 +01:00
|
|
|
{
|
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/**/*"],
|
2022-03-22 01:23:22 +01:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2022-06-09 13:33:10 +02:00
|
|
|
"dist",
|
2022-09-06 11:22:14 +02:00
|
|
|
"src/tests",
|
2022-12-13 10:21:42 +01:00
|
|
|
"src/api/routes/tests/utilities",
|
2023-02-16 17:44:50 +01:00
|
|
|
"src/api/routes/public/tests/utils.ts",
|
2022-12-13 10:21:42 +01:00
|
|
|
"src/automations/tests/utilities",
|
2022-06-09 13:33:10 +02:00
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/*.spec.js"
|
2022-03-22 01:23:22 +01:00
|
|
|
]
|
2022-11-26 17:24:37 +01:00
|
|
|
}
|