Template for TypeScript project using Node.js v14
- ESLint with ESLint Recommended
- Run on Pull request by GitHub Actions
- Test by Jest
- Run on Pull request by GitHub Actions
- Manage Node.js version by nvm
- Manage dependency updates by Renovate
- Create repository using template
- Replace provisional string with actual string
https://github.com/ts-templates/node14
=> your repository URL@ts-templates/node14
=> your package nameTemplate for TypeScript project using Node.js v14
=> your package description
- Implement
src/main.ts
# Compile TypeScript files to JavaScript files
npm run build
# Remove built files
npm run clean
# Run linters
npm run lint
# Fix codes by linters
npm run lint:fix
# Run main.ts
npm start
# Run tests
npm test