Merge branch '5.3'
[GitHub/WoltLab/com.woltlab.wcf.conversation.git] / tsconfig.json
CommitLineData
083fa9ca
MS
1{
2 "include": [
3 "node_modules/@woltlab/wcf/global.d.ts",
4 "ts/**/*"
5 ],
6 "compilerOptions": {
7 "target": "es2017",
8 "module": "amd",
9 "rootDir": "ts/",
10 "outDir": "files/js/",
11 "lib": [
12 "dom",
13 "es2017"
14 ],
15 "strictNullChecks": true,
16 "moduleResolution": "node",
17 "esModuleInterop": true,
18 "noImplicitThis": true,
19 "strictBindCallApply": true,
20 "baseUrl": ".",
21 "paths": {
22 "*": [
23 "node_modules/@woltlab/wcf/ts/*"
24 ]
25 },
26 "importHelpers": true
27 }
28}