Bump csv-parse from 4.14.2 to 4.15.3 (#31)
[GitHub/WoltLab/blacklist.git] / tsconfig.json
1 {
2 "compilerOptions": {
3 "module": "commonjs",
4 "noImplicitAny": true,
5 "removeComments": true,
6 "preserveConstEnums": true,
7 "lib": [
8 "es2017"
9 ],
10 "target": "es2017",
11 "experimentalDecorators": true,
12 "emitDecoratorMetadata": true,
13 "outDir": "dist/",
14 "alwaysStrict": true
15 },
16 "include": [
17 "src/**/*.ts",
18 ],
19 "exclude": [
20 "node_modules",
21 ],
22 }