UNPKG

694 BJSONView Raw
1{
2 "include": ["src", "types"],
3 "compilerOptions": {
4 "module": "esnext",
5 "lib": ["dom", "esnext"],
6 "importHelpers": true,
7 "declaration": true,
8 "sourceMap": true,
9 "rootDir": "./src",
10 "strict": true,
11 "noImplicitAny": true,
12 "strictNullChecks": true,
13 "strictFunctionTypes": true,
14 "strictPropertyInitialization": true,
15 "noImplicitThis": true,
16 "alwaysStrict": true,
17 "noUnusedLocals": true,
18 "noUnusedParameters": true,
19 "noImplicitReturns": true,
20 "noFallthroughCasesInSwitch": true,
21 "moduleResolution": "node",
22 "baseUrl": "./",
23 "paths": {
24 "*": ["src/*", "node_modules/*"]
25 },
26 "esModuleInterop": true
27 }
28}