{ "compilerOptions": { "target": "ESNext", "module": "ESNext", "lib": ["ESNext", "DOM", "ScriptHost"], "strict": true, "esModuleInterop": true, "allowJs": true, "moduleResolution": "node", "sourceMap": false, "declaration": true, "declarationMap": true, "declarationDir": "./lib", "outDir": "./lib", "rootDir": "src", "noImplicitAny": true, "noUnusedLocals": true, "noUnusedParameters": true, "noImplicitReturns": true, "strictNullChecks": false, "resolveJsonModule": true, "skipLibCheck": true, "noImplicitOverride": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "ignoreDeprecations": "5.0", "allowUnusedLabels": true, "baseUrl": "./", "typeRoots": ["./node_modules/@types", "./types"], "paths": { "src/*": ["src/*"] } }, "include": [ "./src", "types", "./typings", "./test", "./docs-source"] }