fix: updated gitignore, gitattributes, moved public to sim/
3
.gitattributes
vendored
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8f1f58fd32af1d9afe3c8d06ebe19deef3656ab96408bbdfb46cf45e8eeb0bc3
|
|
||||||
size 38
|
|
||||||
15
.gitignore
vendored
@@ -1,7 +1,8 @@
|
|||||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
|
|
||||||
# dependencies
|
# dependencies
|
||||||
/node_modules
|
*/node_modules
|
||||||
|
docs/node_modules
|
||||||
/packages/**/node_modules
|
/packages/**/node_modules
|
||||||
/.pnp
|
/.pnp
|
||||||
.pnp.*
|
.pnp.*
|
||||||
@@ -16,7 +17,12 @@
|
|||||||
|
|
||||||
# next.js
|
# next.js
|
||||||
/.next/
|
/.next/
|
||||||
/out/
|
sim/.next/
|
||||||
|
sim/out/
|
||||||
|
sim/build
|
||||||
|
docs/.next/
|
||||||
|
docs/out/
|
||||||
|
docs/build
|
||||||
|
|
||||||
# production
|
# production
|
||||||
/build
|
/build
|
||||||
@@ -52,3 +58,8 @@ next-env.d.ts
|
|||||||
|
|
||||||
# cursorrules
|
# cursorrules
|
||||||
.cursorrules
|
.cursorrules
|
||||||
|
|
||||||
|
# docs
|
||||||
|
docs/.source
|
||||||
|
docs/.contentlayer
|
||||||
|
docs/.content-collections
|
||||||
28
docs/.gitignore
vendored
@@ -1,28 +0,0 @@
|
|||||||
# deps
|
|
||||||
/node_modules
|
|
||||||
|
|
||||||
# generated content
|
|
||||||
.contentlayer
|
|
||||||
.content-collections
|
|
||||||
.source
|
|
||||||
|
|
||||||
# test & build
|
|
||||||
/coverage
|
|
||||||
/.next/
|
|
||||||
/out/
|
|
||||||
/build
|
|
||||||
*.tsbuildinfo
|
|
||||||
|
|
||||||
# misc
|
|
||||||
.DS_Store
|
|
||||||
*.pem
|
|
||||||
/.pnp
|
|
||||||
.pnp.js
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
|
|
||||||
# others
|
|
||||||
.env*.local
|
|
||||||
.vercel
|
|
||||||
next-env.d.ts
|
|
||||||
|
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
|
Before Width: | Height: | Size: 443 B After Width: | Height: | Size: 443 B |
|
Before Width: | Height: | Size: 897 B After Width: | Height: | Size: 897 B |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 5.8 MiB After Width: | Height: | Size: 5.8 MiB |
@@ -30,10 +30,6 @@
|
|||||||
"@/db/*": ["./app/db/*"],
|
"@/db/*": ["./app/db/*"],
|
||||||
"@/executor": ["./app/executor"],
|
"@/executor": ["./app/executor"],
|
||||||
"@/executor/*": ["./app/executor/*"],
|
"@/executor/*": ["./app/executor/*"],
|
||||||
// "@/hooks": ["./app/hooks"],
|
|
||||||
// "@/hooks/*": ["./app/hooks/*"],
|
|
||||||
// "@/middleware": ["./app/middleware"],
|
|
||||||
// "@/middleware/*": ["./app/middleware/*"],
|
|
||||||
},
|
},
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"noEmit": true,
|
"noEmit": true,
|
||||||
|
|||||||