1 | {
|
2 | "compilerOptions": {
|
3 | "module": "commonjs",
|
4 | "outDir": "dist",
|
5 | "declaration": true,
|
6 | "esModuleInterop": true,
|
7 | "target": "es5",
|
8 | "lib": ["es6"],
|
9 | "sourceMap": false,
|
10 | "moduleResolution": "node",
|
11 | "resolveJsonModule": true,
|
12 | "rootDir": ".",
|
13 | "forceConsistentCasingInFileNames": true,
|
14 | "noImplicitReturns": true,
|
15 | "noImplicitThis": true,
|
16 | "noImplicitAny": true,
|
17 | "strictNullChecks": true,
|
18 | "suppressImplicitAnyIndexErrors": true,
|
19 | "noUnusedLocals": true
|
20 | },
|
21 | "exclude": [
|
22 | "node_modules",
|
23 | "dist",
|
24 | ],
|
25 | "include": [
|
26 | "src/**/*.ts"
|
27 | ]
|
28 | }
|