UNPKG

1.02 kBJSONView Raw
1{
2 "compilerOptions": {
3 "module": "commonjs",
4 "moduleResolution": "node",
5 "target": "esnext",
6 "outDir": "lib",
7 "lib": ["es2016", "es2016.array.include", "scripthost"],
8 "types": [
9 "node",
10 "jest"
11 ],
12 "plugins": [{
13 "name": "typescript-plugin-add-type"
14 }],
15 "sourceMap": true,
16 "rootDir": "src",
17 "noImplicitAny": false,
18 "noImplicitThis": false,
19 /* Strict Type-Checking Option */
20 "strict": false, /* disable all strict type-checking options */
21 /* Additional Checks */
22 "experimentalDecorators": true,
23 "noUnusedLocals": false, /* Report errors on unused locals. */
24 // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
25 // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
26 "noUnusedParameters": false /* Report errors on unused parameters. */
27 },
28 "include": ["src/**/*.ts"],
29 "exclude": ["src/fixtures", "src/**/*.test.ts"]
30}
\No newline at end of file