Merge branch '5.5' into 6.0
[GitHub/WoltLab/com.woltlab.wcf.conversation.git] / tsconfig.json
CommitLineData
083fa9ca
MS
1{
2 "include": [
ca888392 3 "node_modules/@woltlab/d.ts/global.d.ts",
083fa9ca
MS
4 "ts/**/*"
5 ],
6 "compilerOptions": {
93fd9c5c 7 "target": "ES2022",
083fa9ca
MS
8 "module": "amd",
9 "rootDir": "ts/",
10 "outDir": "files/js/",
11 "lib": [
93fd9c5c
AE
12 "DOM",
13 "DOM.Iterable",
14 "ES2022"
083fa9ca
MS
15 ],
16 "strictNullChecks": true,
17 "moduleResolution": "node",
18 "esModuleInterop": true,
19 "noImplicitThis": true,
20 "strictBindCallApply": true,
21 "baseUrl": ".",
22 "paths": {
23 "*": [
ca888392 24 "node_modules/@woltlab/d.ts/*"
083fa9ca
MS
25 ]
26 },
0168872e
M
27 "importHelpers": true,
28 "newLine": "lf"
083fa9ca
MS
29 }
30}