1 | {
|
2 | "compilerOptions": {
|
3 | "module": "commonjs",
|
4 | "moduleResolution": "node",
|
5 | "target": "es5",
|
6 | "lib": [
|
7 | "dom",
|
8 | "es2017"
|
9 | ],
|
10 | "types": [
|
11 | "node",
|
12 | "mocha"
|
13 | ],
|
14 | "noImplicitAny": true,
|
15 | "strictNullChecks": true,
|
16 | "noFallthroughCasesInSwitch": true,
|
17 | "noImplicitReturns": true,
|
18 | "noImplicitThis": true,
|
19 | "noUnusedLocals": true,
|
20 | "noUnusedParameters": true,
|
21 | "experimentalDecorators": true,
|
22 | "forceConsistentCasingInFileNames": true,
|
23 | "stripInternal": true,
|
24 | "skipDefaultLibCheck": true,
|
25 | "skipLibCheck": false,
|
26 | "rootDir": ".",
|
27 | "sourceMap": true,
|
28 | "declaration": true,
|
29 | "listFiles": false,
|
30 | "traceResolution": false,
|
31 | "newLine": "LF",
|
32 | "noEmitOnError": true,
|
33 | "inlineSources": true,
|
34 | "listEmittedFiles": false
|
35 | },
|
36 | "include": [
|
37 | "lib/**/*.ts",
|
38 | "test/**/*.ts"
|
39 | ],
|
40 | "exclude": [
|
41 | "node_modules",
|
42 | "lib/*.d.ts",
|
43 | "lib/provider/*.d.ts",
|
44 | "test/cli",
|
45 | "test/expected",
|
46 | "test/fixture",
|
47 | "example"
|
48 | ]
|
49 | } |
\ | No newline at end of file |