Merge branch '5.5'
[GitHub/WoltLab/WCF.git] / tsconfig.json
1 {
2 "include": [
3 "global.d.ts",
4 "ts/**/*"
5 ],
6 "exclude": [
7 "ts/WoltLabSuite/WebComponent.*",
8 "ts/WoltLabSuite/WebComponent/**"
9 ],
10 "compilerOptions": {
11 "experimentalDecorators": true,
12 "emitDecoratorMetadata": true,
13 "allowJs": true,
14 "target": "ES2022",
15 "module": "amd",
16 "rootDir": "ts/",
17 "outDir": "wcfsetup/install/files/js/",
18 "lib": [
19 "DOM",
20 "DOM.Iterable",
21 "ES2022"
22 ],
23 "strictNullChecks": true,
24 "moduleResolution": "node",
25 "esModuleInterop": true,
26 "noImplicitThis": true,
27 "strictBindCallApply": true,
28 "importHelpers": true,
29 "newLine": "lf"
30 }
31 }