Files
st/web-app/public/jsconfig.json
2026-02-10 17:48:27 +08:00

30 lines
664 B
JSON

{
"compilerOptions": {
"checkJs": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowUmdGlobalAccess": true,
"allowSyntheticDefaultImports": true,
"strictBindCallApply": true,
"baseUrl": ".",
"paths": {
"/*": [
"./*"
]
}
},
"exclude": [
"**/node_modules/**",
"**/dist/**",
"**/.git/**",
"lib/**",
"**/*.min.js",
"scripts/extensions/quick-reply/lib/**",
"scripts/extensions/tts/lib/**"
],
"typeAcquisition": {
"include": []
}
}