TypeScript template repository for Visual Studio Code, Dev Containers, Jest, and SonarLint.
- Optionally delete the
sample/
folder. - Open the project in a Dev Container which will use the resulting container from
Dockerfile
as the development environment. - Code away.
When using VS Code, this template will recommend the Dev Containers extension.
If installed, the Dev Containers extension will install other verified extensions listed below and will remain installed while using the development environment container. Otherwise, these must be manually installed locally.
- Docker to manage development environment containers.
- ESLint for linting support.
- Prettier - Code formatter for formatting support.
- SonarLint for static code analysis.
- EditorConfig for VS Code for other workspace settings.
SonarLint is included in this template for static code analysis. It will highlight areas that violate rules while writing code. For this template, the following rules apply.
Dockerfile
installs the requirements for the SonarLint extension. See https://docs.sonarsource.com/sonarlint/vs-code/getting-started/requirements/ for language-specific requirements.
This template follows the Google TypeScript Style using gts which is configured to use ESLint and Prettier.
A minimal debug logging mechanism using debug is included in this template. To enable debug logging for this template, set the DEBUG
environment variable value to app
which is defined in src/util/debug/logger.ts
. Try running sample/sample.ts
with debug enabled like below.
# bash
DEBUG=app npx ts-node ./sample/sample.ts
prepare
- Installs
husky
for pre-commit hooks. - On commit, runs
check
,lint
, andtest
.
- Installs
test
- Runs the unit tests.
lint
- Checks for lint issues.
clear
- Deletes the
build/
folder.
- Deletes the
fix
- Fixes lint issues where it can.
compile
- Compiles the project.
- Creates the
build/
folder.
check
- Checks for type errors.