Blame Raw
· · · 29 lines (664 B)
0 contributors
1{
2 "compilerOptions": {
3 "checkJs": true,
4 "target": "ESNext",
5 "module": "ESNext",
6 "moduleResolution": "node",
7 "allowUmdGlobalAccess": true,
8 "allowSyntheticDefaultImports": true,
9 "strictBindCallApply": true,
10 "baseUrl": ".",
11 "paths": {
12 "/*": [
13 "./*"
14 ]
15 }
16 },
17 "exclude": [
18 "**/node_modules/**",
19 "**/dist/**",
20 "**/.git/**",
21 "lib/**",
22 "**/*.min.js",
23 "scripts/extensions/quick-reply/lib/**",
24 "scripts/extensions/tts/lib/**"
25 ],
26 "typeAcquisition": {
27 "include": []
28 }
29}