Run `migrate-shared-template.php`
[GitHub/WoltLab/com.woltlab.wcf.conversation.git] / tsconfig.json
1 {
2 "include": [
3 "node_modules/@woltlab/d.ts/global.d.ts",
4 "ts/**/*"
5 ],
6 "compilerOptions": {
7 "target": "ES2022",
8 "module": "amd",
9 "rootDir": "ts/",
10 "outDir": "files/js/",
11 "lib": [
12 "DOM",
13 "DOM.Iterable",
14 "ES2022"
15 ],
16 "strictNullChecks": true,
17 "moduleResolution": "node",
18 "esModuleInterop": true,
19 "noImplicitThis": true,
20 "strictBindCallApply": true,
21 "baseUrl": ".",
22 "paths": {
23 "*": [
24 "node_modules/@woltlab/d.ts/*"
25 ]
26 },
27 "importHelpers": true,
28 "newLine": "lf"
29 }
30 }