1 | {
|
2 | "compilerOptions": {
|
3 | "target": "es5",
|
4 | "lib": ["es6", "dom"],
|
5 | "module": "commonjs",
|
6 | "moduleResolution": "node",
|
7 | "removeComments": true,
|
8 | "sourceMap": true,
|
9 | "declaration": true,
|
10 | "rootDir": ".",
|
11 | "outDir": "dist",
|
12 | "noImplicitAny": true,
|
13 | "noUnusedParameters": false,
|
14 | "noUnusedLocals": true,
|
15 | "skipLibCheck": true
|
16 | },
|
17 | "include": ["src/**/*.ts", "tests/**/*.ts"]
|
18 | }
|