mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 01:52:28 +08:00
55 lines
840 B
Plaintext
55 lines
840 B
Plaintext
# See https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
|
|
|
|
# Workaround for Nx bug: parent .gitignore files with '*' can cause
|
|
# `nx show projects` to return nothing by ignoring subprojects.
|
|
# See: https://github.com/nrwl/nx/issues/27368
|
|
# Unignore everything to ensure Nx detects all projects
|
|
!*
|
|
|
|
# compiled output
|
|
dist
|
|
tmp
|
|
out-tsc
|
|
|
|
# dependencies
|
|
node_modules
|
|
|
|
# IDEs and editors
|
|
/.idea
|
|
.project
|
|
.classpath
|
|
.c9/
|
|
*.launch
|
|
.settings/
|
|
*.sublime-workspace
|
|
|
|
# misc
|
|
/.sass-cache
|
|
/connect.lock
|
|
/coverage
|
|
/libpeerconnection.log
|
|
npm-debug.log
|
|
yarn-error.log
|
|
testem.log
|
|
/typings
|
|
|
|
# System Files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
.nx/cache
|
|
.nx/workspace-data
|
|
|
|
vite.config.*.timestamp*
|
|
vitest.config.*.timestamp*
|
|
test-output
|
|
|
|
apps/*/data
|
|
apps/*/out
|
|
upload
|
|
|
|
.rollup.cache
|
|
*.tsbuildinfo
|
|
|
|
/result
|
|
.svelte-kit |