mirror of
https://gitee.com/NexIoT/Universal-IoT-Java.git
synced 2026-09-01 09:54:29 +08:00
35 lines
435 B
Plaintext
35 lines
435 B
Plaintext
# 排除源代码和开发文件
|
|
src/
|
|
node_modules/
|
|
package*.json
|
|
webpack.config.js
|
|
vite.config.js
|
|
tsconfig.json
|
|
.eslintrc.js
|
|
.prettierrc
|
|
|
|
# 排除 IDE 文件
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
|
|
# 排除版本控制文件
|
|
.git/
|
|
.gitignore
|
|
|
|
# 排除构建产物 (只保留 dist 目录)
|
|
!dist/
|
|
|
|
# 排除日志文件
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# 排除环境文件
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.test
|
|
.env.production
|