Skip to content

Commit a942551

Browse files
committed
move examples out of packages, tsconfig clean up, tsdown config
1 parent b532047 commit a942551

File tree

76 files changed

+274
-257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+274
-257
lines changed

common/eslint-config/eslint.config.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import nodePlugin from 'eslint-plugin-n';
1010
import simpleImportSortPlugin from 'eslint-plugin-simple-import-sort';
1111
import { configs } from 'typescript-eslint';
1212

13-
1413
const __dirname = path.dirname(fileURLToPath(import.meta.url));
1514

1615
export default defineConfig(
@@ -72,7 +71,7 @@ export default defineConfig(
7271
ignores: ['**/spec.types.ts']
7372
},
7473
{
75-
files: ['src/client/**/*.ts', 'src/server/**/*.ts'],
74+
files: ['packages/client/**/*.ts', 'packages/server/**/*.ts'],
7675
ignores: ['**/*.test.ts'],
7776
rules: {
7877
'no-console': 'error'
File renamed without changes.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
"mcp"
2323
],
2424
"scripts": {
25-
"typecheck": "tsc -p tsconfig.build.json --noEmit",
25+
"typecheck": "tsc -p tsconfig.json --noEmit",
2626
"prepack": "npm run build:esm && npm run build:cjs",
27-
"lint": "eslint src/ && prettier --check .",
28-
"lint:fix": "eslint src/ --fix && prettier --write .",
27+
"lint": "eslint src/ && prettier --ignore-path ../../.prettierignore --check .",
28+
"lint:fix": "eslint src/ --fix && prettier --ignore-path ../../.prettierignore --write .",
2929
"check": "npm run typecheck && npm run lint",
3030
"start": "npm run server",
3131
"server": "tsx watch --clear-screen=false scripts/cli.ts server",
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)