···11-# To get started with Dependabot version updates, you'll need to specify which
22-# package ecosystems to update and where the package manifests are located.
33-# Please see the documentation for all configuration options:
44-# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
55-66-version: 2
77-updates:
88- - package-ecosystem: 'devcontainers'
99- directory: '/'
1010- schedule:
1111- interval: weekly
1212- commit-message:
1313- prefix: 'chore(deps/devcon):'
1414- open-pull-requests-limit: 4
1515-1616- - package-ecosystem: 'github-actions'
1717- directory: '/'
1818- schedule:
1919- interval: daily
2020- commit-message:
2121- prefix: 'chore(deps/actions):'
2222- open-pull-requests-limit: 4
···3838- `{{language}}`: JavaScript language. Choices: `ts`, `js`
3939- `{{module-system}}`: JavaScript module resolution strategy. Choices: `esm`, `cjs`. (This intentionally does not include AMD, UMD, or IIFE)
40404141-4241## Q&A and Notes
43424443- **Why do pure JS libraries still include TypeScript as a developer dependency?**: While the source code may not be written in TypeScript, TypeScript is responsible for generating [declaration files](https://www.typescriptlang.org/docs/handbook/declaration-files/introduction) (`.d.ts`) during the build process to provide types.