Enable the upgrade notice for 5.5 by default
[GitHub/WoltLab/WCF.git] / tsconfig.json
1 {
2 "include": [
3 "global.d.ts",
4 "ts/**/*"
5 ],
6 "compilerOptions": {
7 "allowJs": true,
8 "target": "es2017",
9 "module": "amd",
10 "rootDir": "ts/",
11 "outDir": "wcfsetup/install/files/js/",
12 "lib": [
13 "dom",
14 "DOM.Iterable",
15 "es2017"
16 ],
17 "strictNullChecks": true,
18 "moduleResolution": "node",
19 "esModuleInterop": true,
20 "noImplicitThis": true,
21 "strictBindCallApply": true,
22 "importHelpers": true,
23 "newLine": "lf"
24 }
25 }