From d8b065e8a1381280c017e5c1d1be588bce3f013e Mon Sep 17 00:00:00 2001 From: Sander Koenders Date: Tue, 11 Sep 2018 10:39:21 +0200 Subject: [PATCH] chore(gitignore): Structure the gitignore file --- .gitignore | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b26394c..efae906 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,27 @@ +# Operating system related files *~ .fuse_hidden* .directory .Trash-* -/.idea -/node_modules/ + +# Intellij ide files +.idea + +# Ignore environment file, use env.json.example instead config/env.json -/**/*.js +# Ignore package manager files +node_modules/ package-lock.json + +# Ignore everything related to test output +reports +.nyc_output + +# Ignore javascript files, sourcemaps and type declarations +src/**/*.js +test/**/*.js +src/**/*.d.ts +test/**/*.d.ts +src/**/*.js.map +test/**/*.js.map \ No newline at end of file