1 | {
|
2 | "compilerOptions": {
|
3 | "experimentalDecorators": true,
|
4 | "module": "commonjs",
|
5 | "target": "es5",
|
6 | "lib": ["es6", "esnext", "es2015"],
|
7 | "suppressImplicitAnyIndexErrors": true,
|
8 | "moduleResolution": "node",
|
9 | "emitDecoratorMetadata": true,
|
10 | "sourceMap": true,
|
11 | "declaration": true,
|
12 | "outDir": "./dist/",
|
13 | "noImplicitAny": false,
|
14 | "noImplicitThis": true,
|
15 | "alwaysStrict": true,
|
16 | "noImplicitReturns": true,
|
17 | "noUnusedLocals": false,
|
18 | "noUnusedParameters": false
|
19 | },
|
20 | "exclude": ["node_modules", "tests", "dist"]
|
21 | }
|