Skip to content

Commit

Permalink
Use ts-node
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhacks committed Jun 14, 2024
1 parent 351d505 commit 766415b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 279 deletions.
19 changes: 5 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@
"npm-funding": true
}
},
"workspaces": [
"zod",
"effect-plugin"
],
"workspaces": ["zod", "effect-plugin"],
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
Expand Down Expand Up @@ -51,18 +48,12 @@
"ts-morph": "^14.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.3.1",
"tsx": "^4.10.2",
"typescript": "next",
"vitest": "^0.32.2"
},
"lint-staged": {
"src/*.ts": [
"biome format --write",
"biome lint --apply"
],
"*.md": [
"prettier --ignore-unknown --write"
]
"src/*.ts": ["biome format --write", "biome lint --apply"],
"*.md": ["prettier --ignore-unknown --write"]
},
"scripts": {
"format": "biome check --apply .",
Expand All @@ -85,9 +76,9 @@
"test:swc": "npx jest --config ./.configs/swc-jest.config.json",
"test:deno": "cd deno && deno test",
"prepublishOnly": "pnpm run test && pnpm run build && pnpm run build:deno",
"play": "nodemon -e ts,mts -w . -x tsx playground.ts",
"play": "nodemon -e ts,mts -w . -x ts-node playground.ts",
"depcruise": "depcruise -c .dependency-cruiser.js src",
"bench": "pnpm run build:cjs && tsx benchmarks/index.ts",
"bench": "pnpm run build:cjs && ts-node benchmarks/index.ts",
"prepare": "husky install"
}
}
Loading

0 comments on commit 766415b

Please sign in to comment.