package -> pkg

This commit is contained in:
2025-08-29 20:45:53 -04:00
parent 0d6d3d6d32
commit f38a5a69df
54 changed files with 5 additions and 5 deletions

View File

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@@ -14,9 +14,9 @@
"isolatedModules": true, "isolatedModules": true,
"paths": { "paths": {
"^/*": ["./*"], "^/*": ["./*"],
"@games/*": ["./packages/*"], "@games/*": ["./pkg/*"],
"$/*": ["./packages/client/*"], "$/*": ["./pkg/client/*"],
"~/*": ["./packages/client/src/*"] "~/*": ["./pkg/client/src/*"]
} }
} }
} }

View File

@@ -2,4 +2,4 @@ onlyBuiltDependencies:
- "@parcel/watcher" - "@parcel/watcher"
- esbuild - esbuild
packages: packages:
- "packages/*" - "pkg/*"

View File

@@ -2,7 +2,7 @@
"compilerOptions": { "compilerOptions": {
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"@games/*": ["packages/*"] "@games/*": ["pkg/*"]
} }
} }
} }