Skip to content

Commit

Permalink
add a couple missing tsconfig pathse
Browse files Browse the repository at this point in the history
  • Loading branch information
ssalbdivad committed May 22, 2024
1 parent 0d791c4 commit d1ff72c
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 12 deletions.
1 change: 1 addition & 0 deletions packages/store-sync/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "20.12.12",
"@types/sql.js": "^1.4.4",
"@viem/anvil": "^0.0.7",
"mock-game-contracts": "workspace:*",
Expand Down
1 change: 0 additions & 1 deletion packages/store-sync/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"types": ["node"],
"outDir": "dist"
}
}
2 changes: 0 additions & 2 deletions packages/store/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"types": ["node"],
"rootDir": ".",
"outDir": "dist"
},
"include": ["mud.config.ts", "ts"]
Expand Down
15 changes: 15 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 11 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{
"extends": "@arktype/util/tsconfig.base.json",
"compilerOptions": {
"module": "esnext",
"moduleResolution": "Bundler",
"target": "es2021",
"lib": ["ESNext"],
"noEmit": true,
"skipLibCheck": true,
"strict": true,
"declaration": true,
"esModuleInterop": true,
"noErrorTruncation": true,
"resolveJsonModule": false,
"exactOptionalPropertyTypes": false,
"forceConsistentCasingInFileNames": true,
"target": "es2021",
"module": "esnext",
"sourceMap": true,
// this should ideally be enabled in a future commit
"verbatimModuleSyntax": false,
"paths": {
"@latticexyz/abi-ts": ["./packages/abi-ts/src/index.ts"],
"@latticexyz/block-logs-stream": ["./packages/block-logs-stream/src/index.ts"],
Expand All @@ -24,7 +26,7 @@
"@latticexyz/common/utils": ["./packages/common/src/utils/index.ts"],
"@latticexyz/common/kms": ["./packages/common/src/kms/index.ts"],
"@latticexyz/config": ["./packages/config/src/index.ts"],
"@latticexyz/config/*": ["./packages/config/src/exports/*"],
"@latticexyz/config/*": ["./packages/config/src/exports/*.ts"],
"@latticexyz/config/deprecated/*": ["./packages/config/src/deprecated/*"],
"@latticexyz/gas-report": ["./packages/gas-report/src/index.ts"],
"@latticexyz/protocol-parser": ["./packages/protocol-parser/src/index.ts"],
Expand All @@ -40,7 +42,7 @@
"@latticexyz/store/config": ["./packages/store/ts/config/index.ts"],
"@latticexyz/store/config/v2": ["./packages/store/ts/config/v2/index.ts"],
"@latticexyz/store/register": ["./packages/store/ts/register/index.ts"],
"@latticexyz/store/*": ["./packages/store/ts/exports/*"],
"@latticexyz/store/*": ["./packages/store/ts/exports/*.ts"],
"@latticexyz/store-sync/*": ["./packages/store-sync/src/*"],
"@latticexyz/utils": ["./packages/utils/src/index.ts"],
"@latticexyz/world": ["./packages/world/src/index.ts"],
Expand All @@ -49,7 +51,7 @@
"@latticexyz/world/config/v2": ["./packages/world/ts/config/v2/index.ts"],
"@latticexyz/world/register": ["./packages/world/ts/register/index.ts"],
"@latticexyz/world/node": ["./packages/world/ts/node/index.ts"],
"@latticexyz/world/*": ["./packages/world/ts/exports/*"]
"@latticexyz/world/*": ["./packages/world/ts/exports/*.ts"]
}
},
"exclude": ["**/dist", "**/node_modules", "**/docs", "**/e2e"]
Expand Down

0 comments on commit d1ff72c

Please sign in to comment.