23 lines
300 B
Plaintext
23 lines
300 B
Plaintext
// Ignore all files and folders starting with a dot
|
|
.*
|
|
|
|
// Ignore logs
|
|
*.log*
|
|
|
|
// Ignore timestamp files
|
|
*.timestamp*
|
|
|
|
// Ignore development files
|
|
node_modules
|
|
src/
|
|
public/
|
|
biome.json
|
|
eslint.config.mjs
|
|
index.html
|
|
jsconfig.json
|
|
package.json
|
|
TODO
|
|
tsconfig.json
|
|
vite.config.ts
|
|
vitest.config.ts
|
|
yarn.lock |