Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 428 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 428 Bytes

eslint-config

Template repository with configuration for eslint, prettier & vscode.

Scripts

yarn lint

  • Runs the linter on all files in the src directory.

yarn build

  • Compiles the source TypeScript code, and lints the source.
$ tsc --project ./ && eslint ./src/**/*.*
# Some lovely linting output
# ...
# Done in 5s

yarn build:watch

  • Starts the TypeScript compiler in watch mode.