2023-08-29 22:50:07 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "ESNext",
|
|
|
|
"target": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"allowUmdGlobalAccess": true,
|
2023-08-30 21:26:28 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true
|
2023-08-29 22:50:07 +02:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2024-04-07 00:47:07 +02:00
|
|
|
"**/node_modules/*",
|
2024-04-07 15:41:23 +02:00
|
|
|
"public/lib",
|
|
|
|
"backups/*",
|
2024-06-29 13:35:16 +02:00
|
|
|
"data/*",
|
|
|
|
"**/dist/*",
|
|
|
|
"dist/*",
|
|
|
|
"cache/*",
|
|
|
|
"src/tokenizers/*",
|
|
|
|
"docker/*",
|
2023-08-29 22:50:07 +02:00
|
|
|
]
|
2024-04-06 19:09:39 +02:00
|
|
|
}
|