Merge branch 'master' of https://github.com/WoltLab/WCF
[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 "es2017"
15 ],
16 "strictNullChecks": true,
17 "moduleResolution": "node",
18 "esModuleInterop": true,
19 "noImplicitThis": true,
20 "strictBindCallApply": true,
21 "importHelpers": true
22 }
23 }