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