this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Initial commit.

alice 07c0512a 3e1b886c

+460
+12
.editorconfig
··· 1 + # EditorConfig is awesome: https://EditorConfig.org 2 + 3 + # top-most EditorConfig file 4 + root = true 5 + 6 + [*] 7 + indent_style = space 8 + indent_size = 2 9 + end_of_line = lf 10 + charset = utf-8 11 + trim_trailing_whitespace = false 12 + insert_final_newline = true
+2
.env.example
··· 1 + BSKY_USERNAME= 2 + BSKY_PASSWORD=
+130
.gitignore
··· 1 + # Logs 2 + logs 3 + *.log 4 + npm-debug.log* 5 + yarn-debug.log* 6 + yarn-error.log* 7 + lerna-debug.log* 8 + .pnpm-debug.log* 9 + 10 + # Diagnostic reports (https://nodejs.org/api/report.html) 11 + report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 + 13 + # Runtime data 14 + pids 15 + *.pid 16 + *.seed 17 + *.pid.lock 18 + 19 + # Directory for instrumented libs generated by jscoverage/JSCover 20 + lib-cov 21 + 22 + # Coverage directory used by tools like istanbul 23 + coverage 24 + *.lcov 25 + 26 + # nyc test coverage 27 + .nyc_output 28 + 29 + # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 + .grunt 31 + 32 + # Bower dependency directory (https://bower.io/) 33 + bower_components 34 + 35 + # node-waf configuration 36 + .lock-wscript 37 + 38 + # Compiled binary addons (https://nodejs.org/api/addons.html) 39 + build/Release 40 + 41 + # Dependency directories 42 + node_modules/ 43 + jspm_packages/ 44 + 45 + # Snowpack dependency directory (https://snowpack.dev/) 46 + web_modules/ 47 + 48 + # TypeScript cache 49 + *.tsbuildinfo 50 + 51 + # Optional npm cache directory 52 + .npm 53 + 54 + # Optional eslint cache 55 + .eslintcache 56 + 57 + # Optional stylelint cache 58 + .stylelintcache 59 + 60 + # Microbundle cache 61 + .rpt2_cache/ 62 + .rts2_cache_cjs/ 63 + .rts2_cache_es/ 64 + .rts2_cache_umd/ 65 + 66 + # Optional REPL history 67 + .node_repl_history 68 + 69 + # Output of 'npm pack' 70 + *.tgz 71 + 72 + # Yarn Integrity file 73 + .yarn-integrity 74 + 75 + # dotenv environment variable files 76 + .env 77 + .env.development.local 78 + .env.test.local 79 + .env.production.local 80 + .env.local 81 + 82 + # parcel-bundler cache (https://parceljs.org/) 83 + .cache 84 + .parcel-cache 85 + 86 + # Next.js build output 87 + .next 88 + out 89 + 90 + # Nuxt.js build / generate output 91 + .nuxt 92 + dist 93 + 94 + # Gatsby files 95 + .cache/ 96 + # Comment in the public line in if your project uses Gatsby and not Next.js 97 + # https://nextjs.org/blog/next-9-1#public-directory-support 98 + # public 99 + 100 + # vuepress build output 101 + .vuepress/dist 102 + 103 + # vuepress v2.x temp and cache directory 104 + .temp 105 + .cache 106 + 107 + # Docusaurus cache and generated files 108 + .docusaurus 109 + 110 + # Serverless directories 111 + .serverless/ 112 + 113 + # FuseBox cache 114 + .fusebox/ 115 + 116 + # DynamoDB Local files 117 + .dynamodb/ 118 + 119 + # TernJS port file 120 + .tern-port 121 + 122 + # Stores VSCode versions used for testing VSCode extensions 123 + .vscode-test 124 + 125 + # yarn v2 126 + .yarn/cache 127 + .yarn/unplugged 128 + .yarn/build-state.yml 129 + .yarn/install-state.gz 130 + .pnp.*
+29
index.ts
··· 1 + import pkg from "@atproto/api"; 2 + const { BskyAgent } = pkg; 3 + import * as dotenv from "dotenv"; 4 + import process from "node:process"; 5 + dotenv.config(); 6 + 7 + const agent = new BskyAgent({ 8 + service: "https://bsky.social", 9 + persistSession: (evt, sess) => { 10 + // store the session-data for reuse 11 + }, 12 + }); 13 + 14 + await agent.login({ 15 + identifier: process.env.BSKY_USERNAME!, 16 + password: process.env.BSKY_PASSWORD!, 17 + }); 18 + 19 + const bloot = "You can find the code for this bleet >>>here<<<"; 20 + await agent.post({ 21 + text: bloot, 22 + entities: [ 23 + { 24 + index: { start: bloot.indexOf(">>>") + 3, end: bloot.indexOf("<<<") }, 25 + type: "link", 26 + value: "https://github.com/aliceisjustplaying/bluesky-experiments", 27 + }, 28 + ], 29 + });
+158
package-lock.json
··· 1 + { 2 + "name": "bsky", 3 + "version": "1.0.0", 4 + "lockfileVersion": 3, 5 + "requires": true, 6 + "packages": { 7 + "": { 8 + "name": "bsky", 9 + "version": "1.0.0", 10 + "license": "ISC", 11 + "dependencies": { 12 + "@atproto/api": "^0.2.5", 13 + "dotenv": "^16.0.3" 14 + }, 15 + "devDependencies": { 16 + "@types/node": "^18.15.11" 17 + } 18 + }, 19 + "node_modules/@atproto/api": { 20 + "version": "0.2.5", 21 + "resolved": "https://registry.npmjs.org/@atproto/api/-/api-0.2.5.tgz", 22 + "integrity": "sha512-RJGhiwj6kOjrlVy7ES/SfJt3JyFwXdFZeBP4iw2ne/Ie0ZlanKhY0y9QHx5tI4rvEUP/wf0iKtaq2neczHi3bg==", 23 + "dependencies": { 24 + "@atproto/common-web": "*", 25 + "@atproto/uri": "*", 26 + "@atproto/xrpc": "*", 27 + "tlds": "^1.234.0", 28 + "typed-emitter": "^2.1.0" 29 + } 30 + }, 31 + "node_modules/@atproto/common-web": { 32 + "version": "0.1.0", 33 + "resolved": "https://registry.npmjs.org/@atproto/common-web/-/common-web-0.1.0.tgz", 34 + "integrity": "sha512-qD6xF60hvH+cP++fk/mt+0S9cxs94KsK+rNWypNlgnlp7r9By4ltXwtDSR/DNTA8mwDeularUno4VbTd2IWIzA==", 35 + "dependencies": { 36 + "multiformats": "^9.6.4", 37 + "uint8arrays": "3.0.0", 38 + "zod": "^3.14.2" 39 + } 40 + }, 41 + "node_modules/@atproto/identifier": { 42 + "version": "0.1.0", 43 + "resolved": "https://registry.npmjs.org/@atproto/identifier/-/identifier-0.1.0.tgz", 44 + "integrity": "sha512-3LV7+4E6S0k8Rru7NBkyDF6Zf6NHVUXVS9d4l9fiXWMC49ghZMjq0vPmz80xjG1rRuFdJFbpRf4ApFciGxLIyQ==", 45 + "dependencies": { 46 + "@atproto/common-web": "*" 47 + } 48 + }, 49 + "node_modules/@atproto/lexicon": { 50 + "version": "0.1.0", 51 + "resolved": "https://registry.npmjs.org/@atproto/lexicon/-/lexicon-0.1.0.tgz", 52 + "integrity": "sha512-Iy+gV9w42xLhrZrmcbZh7VFoHjXuzWvecGHIfz44owNjjv7aE/d2P5BbOX/XicSkmQ8Qkpg0BqwYDD1XBVS+DQ==", 53 + "dependencies": { 54 + "@atproto/common-web": "*", 55 + "@atproto/identifier": "*", 56 + "@atproto/nsid": "*", 57 + "@atproto/uri": "*", 58 + "iso-datestring-validator": "^2.2.2", 59 + "multiformats": "^9.6.4", 60 + "zod": "^3.14.2" 61 + } 62 + }, 63 + "node_modules/@atproto/nsid": { 64 + "version": "0.0.1", 65 + "resolved": "https://registry.npmjs.org/@atproto/nsid/-/nsid-0.0.1.tgz", 66 + "integrity": "sha512-t5M6/CzWBVYoBbIvfKDpqPj/+ZmyoK9ydZSStcTXosJ27XXwOPhz0VDUGKK2SM9G5Y7TPes8S5KTAU0UdVYFCw==" 67 + }, 68 + "node_modules/@atproto/uri": { 69 + "version": "0.0.2", 70 + "resolved": "https://registry.npmjs.org/@atproto/uri/-/uri-0.0.2.tgz", 71 + "integrity": "sha512-/6otLZF7BLpT9suSdHuXLbL12nINcWPsLmcOI+dctqovWUjH+XIRVNXDQgBYSrPVetxMiknuEwWelmnA33AEXg==", 72 + "dependencies": { 73 + "@atproto/identifier": "*", 74 + "@atproto/nsid": "*" 75 + } 76 + }, 77 + "node_modules/@atproto/xrpc": { 78 + "version": "0.1.0", 79 + "resolved": "https://registry.npmjs.org/@atproto/xrpc/-/xrpc-0.1.0.tgz", 80 + "integrity": "sha512-LhBeZkQwPezjEtricGYnG62udFglOqlnmMSS0KyWgEAPi4KMp4H2F4jNoXcf5NPtZ9S4N4hJaErHX4PJYv2lfA==", 81 + "dependencies": { 82 + "@atproto/lexicon": "*", 83 + "zod": "^3.14.2" 84 + } 85 + }, 86 + "node_modules/@types/node": { 87 + "version": "18.15.11", 88 + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", 89 + "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==", 90 + "dev": true 91 + }, 92 + "node_modules/dotenv": { 93 + "version": "16.0.3", 94 + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", 95 + "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==", 96 + "engines": { 97 + "node": ">=12" 98 + } 99 + }, 100 + "node_modules/iso-datestring-validator": { 101 + "version": "2.2.2", 102 + "resolved": "https://registry.npmjs.org/iso-datestring-validator/-/iso-datestring-validator-2.2.2.tgz", 103 + "integrity": "sha512-yLEMkBbLZTlVQqOnQ4FiMujR6T4DEcCb1xizmvXS+OxuhwcbtynoosRzdMA69zZCShCNAbi+gJ71FxZBBXx1SA==" 104 + }, 105 + "node_modules/multiformats": { 106 + "version": "9.9.0", 107 + "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz", 108 + "integrity": "sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==" 109 + }, 110 + "node_modules/rxjs": { 111 + "version": "7.8.0", 112 + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.0.tgz", 113 + "integrity": "sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==", 114 + "optional": true, 115 + "dependencies": { 116 + "tslib": "^2.1.0" 117 + } 118 + }, 119 + "node_modules/tlds": { 120 + "version": "1.238.0", 121 + "resolved": "https://registry.npmjs.org/tlds/-/tlds-1.238.0.tgz", 122 + "integrity": "sha512-lFPF9pZFhLrPodaJ0wt9QIN0l8jOxqmUezGZnm7BfkDSVd9q667oVIJukLVzhF+4oW7uDlrLlfJrL5yu9RWwew==", 123 + "bin": { 124 + "tlds": "bin.js" 125 + } 126 + }, 127 + "node_modules/tslib": { 128 + "version": "2.5.0", 129 + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", 130 + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", 131 + "optional": true 132 + }, 133 + "node_modules/typed-emitter": { 134 + "version": "2.1.0", 135 + "resolved": "https://registry.npmjs.org/typed-emitter/-/typed-emitter-2.1.0.tgz", 136 + "integrity": "sha512-g/KzbYKbH5C2vPkaXGu8DJlHrGKHLsM25Zg9WuC9pMGfuvT+X25tZQWo5fK1BjBm8+UrVE9LDCvaY0CQk+fXDA==", 137 + "optionalDependencies": { 138 + "rxjs": "*" 139 + } 140 + }, 141 + "node_modules/uint8arrays": { 142 + "version": "3.0.0", 143 + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.0.0.tgz", 144 + "integrity": "sha512-HRCx0q6O9Bfbp+HHSfQQKD7wU70+lydKVt4EghkdOvlK/NlrF90z+eXV34mUd48rNvVJXwkrMSPpCATkct8fJA==", 145 + "dependencies": { 146 + "multiformats": "^9.4.2" 147 + } 148 + }, 149 + "node_modules/zod": { 150 + "version": "3.21.4", 151 + "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", 152 + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", 153 + "funding": { 154 + "url": "https://github.com/sponsors/colinhacks" 155 + } 156 + } 157 + } 158 + }
+20
package.json
··· 1 + { 2 + "name": "bsky", 3 + "version": "1.0.0", 4 + "description": "", 5 + "main": "index.js", 6 + "scripts": { 7 + "run": "ts-node-esm index.ts" 8 + }, 9 + "keywords": [], 10 + "author": "", 11 + "type": "module", 12 + "license": "ISC", 13 + "dependencies": { 14 + "@atproto/api": "^0.2.5", 15 + "dotenv": "^16.0.3" 16 + }, 17 + "devDependencies": { 18 + "@types/node": "^18.15.11" 19 + } 20 + }
+109
tsconfig.json
··· 1 + { 2 + "compilerOptions": { 3 + /* Visit https://aka.ms/tsconfig to read more about this file */ 4 + 5 + /* Projects */ 6 + // "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */ 7 + // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ 8 + // "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */ 9 + // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */ 10 + // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ 11 + // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ 12 + 13 + /* Language and Environment */ 14 + "target": "esnext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, 15 + // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ 16 + // "jsx": "preserve", /* Specify what JSX code is generated. */ 17 + // "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */ 18 + // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ 19 + // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */ 20 + // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ 21 + // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */ 22 + // "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */ 23 + // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ 24 + // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ 25 + // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */ 26 + 27 + /* Modules */ 28 + "module": "esnext" /* Specify what module code is generated. */, 29 + // "rootDir": "./", /* Specify the root folder within your source files. */ 30 + "moduleResolution": "nodenext" /* Specify how TypeScript looks up a file from a given module specifier. */, 31 + // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ 32 + // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ 33 + // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ 34 + // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */ 35 + // "types": [], /* Specify type package names to be included without being referenced in a source file. */ 36 + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ 37 + // "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */ 38 + // "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */ 39 + // "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */ 40 + // "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */ 41 + // "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */ 42 + // "resolveJsonModule": true, /* Enable importing .json files. */ 43 + // "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */ 44 + // "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */ 45 + 46 + /* JavaScript Support */ 47 + // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */ 48 + // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ 49 + // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */ 50 + 51 + /* Emit */ 52 + // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ 53 + // "declarationMap": true, /* Create sourcemaps for d.ts files. */ 54 + // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ 55 + // "sourceMap": true, /* Create source map files for emitted JavaScript files. */ 56 + // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ 57 + // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */ 58 + // "outDir": "./", /* Specify an output folder for all emitted files. */ 59 + // "removeComments": true, /* Disable emitting comments. */ 60 + // "noEmit": true, /* Disable emitting files from a compilation. */ 61 + // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ 62 + // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */ 63 + // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ 64 + // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ 65 + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ 66 + // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */ 67 + // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ 68 + // "newLine": "crlf", /* Set the newline character for emitting files. */ 69 + // "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */ 70 + // "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */ 71 + // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */ 72 + // "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */ 73 + // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ 74 + // "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */ 75 + 76 + /* Interop Constraints */ 77 + // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ 78 + // "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */ 79 + // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ 80 + "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */, 81 + // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ 82 + "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, 83 + 84 + /* Type Checking */ 85 + "strict": true /* Enable all strict type-checking options. */, 86 + // "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */ 87 + // "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */ 88 + // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ 89 + // "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */ 90 + // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ 91 + // "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */ 92 + // "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */ 93 + // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ 94 + // "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */ 95 + // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */ 96 + // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ 97 + // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ 98 + // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ 99 + // "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */ 100 + // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ 101 + // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */ 102 + // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ 103 + // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ 104 + 105 + /* Completeness */ 106 + // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ 107 + "skipLibCheck": true /* Skip type checking all .d.ts files. */ 108 + } 109 + }