25 lines
574 B
JSON
25 lines
574 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "node",
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"checkJs": true,
|
|
"allowUmdGlobalAccess": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"exclude": [
|
|
"**/node_modules/**",
|
|
"**/dist/**",
|
|
"**/.git/**",
|
|
"public/lib/**",
|
|
"backups/**",
|
|
"data/**",
|
|
"cache/**",
|
|
"src/tokenizers/**",
|
|
"docker/**"
|
|
]
|
|
}
|