{"id":19197862,"url":"https://github.com/flarebyte/baldrick-tsconfig-es2021","last_synced_at":"2026-01-30T04:18:46.999Z","repository":{"id":57749631,"uuid":"524723309","full_name":"flarebyte/baldrick-tsconfig-es2021","owner":"flarebyte","description":"Shared basic Typescript config for es2021","archived":false,"fork":false,"pushed_at":"2022-08-15T08:16:56.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-05T10:08:54.674Z","etag":null,"topics":["todo"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flarebyte.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-08-14T16:28:53.000Z","updated_at":"2025-09-19T19:03:20.000Z","dependencies_parsed_at":"2022-08-28T06:10:50.836Z","dependency_job_id":null,"html_url":"https://github.com/flarebyte/baldrick-tsconfig-es2021","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/flarebyte/baldrick-tsconfig-es2021","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fbaldrick-tsconfig-es2021","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fbaldrick-tsconfig-es2021/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fbaldrick-tsconfig-es2021/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fbaldrick-tsconfig-es2021/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flarebyte","download_url":"https://codeload.github.com/flarebyte/baldrick-tsconfig-es2021/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fbaldrick-tsconfig-es2021/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28901152,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T04:02:34.702Z","status":"ssl_error","status_checked_at":"2026-01-30T04:02:33.562Z","response_time":66,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["todo"],"created_at":"2024-11-09T12:18:56.972Z","updated_at":"2026-01-30T04:18:46.965Z","avatar_url":"https://github.com/flarebyte.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# baldrick-tsconfig-es2021\n\n\u003e Shared basic [TypeScript config](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html) for ES2021\n\nThis is _not an official_ [base](https://github.com/tsconfig/bases). It should support Node.js 16 and above, but should provide ES2021 support for [ES modules](https://hacks.mozilla.org/2018/03/es-modules-a-cartoon-deep-dive/).\n\nIt includes:\n\n-   `allowSyntheticDefaultImports` is activated (true) to provide backwards compatibility, Node.js allows you to import most CommonJS packages with a default import. This flag tells TypeScript that it's okay to use import on CommonJS modules (Sindre Sorhus)\n-   `declaration` is activated (true) and generate .d.ts files for every TypeScript or JavaScript file inside your project. \n-   `esModuleInterop` is activated (true) which should result in better support for import of dependencies regardless whether they are `ES` or `commonjs`.\n-   `forceConsistentCasingInFileNames` is activated (true) and TypeScript will issue an error if a program tries to include a file by a casing different from the casing on disk.\n-   `moduleDetection` is set to `force` which ensures that every non-declaration file is treated as a module. \n-   `newLine` is set to `LF` (unix).\n-   `noEmitOnError` is activated (true) and this will not emit compiler output files like JavaScript source code, source-maps or declarations if any errors were reported.\n-   `noFallthroughCasesInSwitch` is activated (true) and you get report errors for fallthrough cases in switch statements.\n-   `noImplicitOverride` is activated (true) and you can ensure that the sub-classes never go out of sync, by ensuring that functions which override include the keyword `override`.\n-   `noImplicitReturns` is activated (true) and TypeScript will check all code paths in a function to ensure they return a value.\n-   `noPropertyAccessFromIndexSignature` is activated (true) and will raise an error when the unknown field uses dot syntax instead of indexed syntax.\n-   `noUncheckedIndexedAccess` is activated (true) and this will add undefined to any un-declared field in the type.\n-   `noUnusedLocals` is activated (true) and you get report errors on unused local variables.\n-   `noUnusedParameters` is activated (true) and you get report errors on unused parameters in functions.\n-   `resolveJsonModule` is deactivated (false) as TypeScript does not support resolving JSON files by default.\n-   `skipLibCheck` is activated (true) and skip type checking of declaration files.\n-   `strict` is activated (true) and enables a wide range of type checking behavior that results in stronger guarantees of program correctness. \n-   `useDefineForClassFields` is activated (true) and switches to the upcoming standard version of class fields runtime behavior.\n\n## Install\n\n    $ npm install --save-dev baldrick-tsconfig-es2021\n\n## Usage\n\n`tsconfig.json`\n\n```json\n{\n\t\"extends\": \"baldrick-tsconfig-es2021\"\n}\n```\n\n## Other\n\nThis project was strongly inspired by [Sindre Sorhus tsconfig](https://github.com/sindresorhus/tsconfig)\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflarebyte%2Fbaldrick-tsconfig-es2021","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflarebyte%2Fbaldrick-tsconfig-es2021","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflarebyte%2Fbaldrick-tsconfig-es2021/lists"}