repository template for Node.js & TypeScript projects
at main 1.8 kB view raw
1# Logs 2logs 3*.log 4npm-debug.log* 5yarn-debug.log* 6yarn-error.log* 7lerna-debug.log* 8.pnpm-debug.log* 9 10# NPM packaging 11dist 12 13# Diagnostic reports (https://nodejs.org/api/report.html) 14report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 15 16# Runtime data 17pids 18*.pid 19*.seed 20*.pid.lock 21 22# Directory for instrumented libs generated by jscoverage/JSCover 23lib-cov 24 25# Coverage directory used by tools like istanbul 26coverage 27*.lcov 28 29# Compiled binary addons (https://nodejs.org/api/addons.html) 30build/Release 31 32# Dependency directories 33node_modules 34jspm_packages 35 36# TypeScript cache 37*.tsbuildinfo 38 39# Optional npm cache directory 40.npm 41 42# Optional eslint cache 43.eslintcache 44 45# Optional stylelint cache 46.stylelintcache 47 48# Optional REPL history 49.node_repl_history 50 51# Output of 'npm pack' 52*.tgz 53 54# Yarn Integrity file 55.yarn-integrity 56 57# dotenv environment variable files 58.env 59.env.development.local 60.env.test.local 61.env.production.local 62.env.local 63 64# parcel-bundler cache (https://parceljs.org/) 65.cache 66.parcel-cache 67 68# Next.js build output 69.next 70out 71next-env.d.ts 72 73# Nuxt.js build / generate output 74.nuxt 75 76# Gatsby files 77.cache/ 78# Comment in the public line in if your project uses Gatsby and not Next.js 79# https://nextjs.org/blog/next-9-1#public-directory-support 80# public 81 82# vuepress build output 83.vuepress/dist 84 85# vuepress v2.x temp and cache directory 86.temp 87.cache 88 89# Docusaurus cache and generated files 90.docusaurus 91 92# Serverless directories 93.serverless/ 94 95# DynamoDB Local files 96.dynamodb/ 97 98# yarn v2 99.yarn/cache 100.yarn/unplugged 101.yarn/build-state.yml 102.yarn/install-state.gz 103.pnp.* 104 105# TypeDoc 106docs/typedoc 107 108# Storybook 109build-storybook.log 110storybook-static 111 112# Vercel 113.vercel 114 115## VSCode 116# Stores VSCode versions used for testing VSCode extensions 117.vscode-test 118 119# JetBrains IDE 120.idea 121 122# Apple/MacOS 123.DS_Store