UNPKG

868 BJSONView Raw
1{
2 "include": [
3 "index.d.ts",
4 ],
5 "exclude": [
6 "node_modules",
7 "dist",
8 "coverage"
9 ],
10 "compilerOptions": {
11 "target": "es2018",
12 "module": "commonjs",
13 "lib": [
14 "esnext"
15 ],
16 "importHelpers": true,
17 "declaration": true,
18 "sourceMap": true,
19 "noEmit": true,
20 "rootDir": "./",
21 "outDir": "dist",
22 "strict": true,
23 "noImplicitAny": true,
24 "strictNullChecks": true,
25 "strictFunctionTypes": true,
26 "strictPropertyInitialization": true,
27 "noImplicitThis": true,
28 "alwaysStrict": true,
29 "noUnusedLocals": true,
30 "noUnusedParameters": true,
31 "noImplicitReturns": true,
32 "noFallthroughCasesInSwitch": true,
33 "moduleResolution": "node",
34 "baseUrl": "./",
35 "paths": {
36 "~/*": [
37 "src/*"
38 ]
39 },
40 "esModuleInterop": true,
41 "resolveJsonModule": true
42 }
43}
\No newline at end of file