-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
43 lines (33 loc) · 1.11 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# dependencies
**/node_modules/
# secrets
secrets/*
!secrets/README.md
# test coverage
packages/**/coverage/
# Typescript compilation output files for libraries and applications
packages/**/lib/
packages/**/dist/
packages/**/tsconfig.tsbuildinfo
# configuration for the npm registry on Artifact Registry
packages/**/.npmrc
# directory containing protos.json of Google Cloud libraries (copied from
# node_modules when building with esbuild)
packages/scripts/protos/
# SQLite database used in some Datasette example
fixtures.db
# eleventy-fetch cache (I use different caches for tests and scripts)
.cache
packages/**/.cache
packages/**/.cache-tests
.cache-plausible-json-responses
# These files are copied to each monorepo package just before triggering the CI
# on Cloud Build
packages/**/.gcloudignore
packages/**/.npmignore
# ignore all files generated by api-extractor, except for the API report file.
# https://api-extractor.com/pages/overview/intro/
packages/**/.ae/*
!packages/**/.ae/*.api.md
# tsconfig generated by a script, right before creating the container image for each app
packages/**/tsconfig-container.json