`$attachmentHandler` can not be null
[GitHub/WoltLab/WCF.git] / tsconfig.json
CommitLineData
b612e0a6 1{
95adb2f6 2 "include": [
83713d5f 3 "ts/**/*"
95adb2f6 4 ],
72827369 5 "exclude": [
936678e1 6 "ts/WoltLabSuite/WebComponent.*",
994f80de 7 "ts/WoltLabSuite/WebComponent/**"
72827369 8 ],
95adb2f6 9 "compilerOptions": {
20c050c2 10 "experimentalDecorators": true,
7db8cab3 11 "emitDecoratorMetadata": true,
95adb2f6 12 "allowJs": true,
2b2ad7a7 13 "target": "ES2022",
95adb2f6 14 "module": "amd",
83713d5f 15 "rootDir": "ts/",
95adb2f6
TD
16 "outDir": "wcfsetup/install/files/js/",
17 "lib": [
2b2ad7a7 18 "DOM",
502eda18 19 "DOM.Iterable",
2b2ad7a7 20 "ES2022"
b612e0a6 21 ],
95adb2f6
TD
22 "strictNullChecks": true,
23 "moduleResolution": "node",
24 "esModuleInterop": true,
25 "noImplicitThis": true,
a132a670 26 "strictBindCallApply": true,
3fb37a67 27 "importHelpers": true,
d05e64fe
TD
28 "newLine": "lf",
29 "paths": {
30 "*": [
31 "./ts/*"
32 ]
33 }
95adb2f6 34 }
b612e0a6 35}