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