Skip to content

Commit

Permalink
drop typescript alias import
Browse files Browse the repository at this point in the history
  • Loading branch information
nurliman committed May 8, 2024
1 parent 72e0487 commit ab0f49c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 58 deletions.
5 changes: 5 additions & 0 deletions .changeset/dirty-weeks-repeat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@nurliman/base85": patch
---

drop typescript alias import
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"packageManager": "pnpm@9.1.0",
Expand Down
41 changes: 0 additions & 41 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion test/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import fs from "node:fs/promises";
import base85 from "@/index";
import { expect, test } from "vitest";
import base85 from "../src/index.ts";

const [loremIpsumBase85, loremIpsum] = await Promise.all([
fs.readFile("test/loremipsum.base85.txt", "utf8"),
Expand Down
6 changes: 1 addition & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"allowImportingTsExtensions": true,
"baseUrl": "./src",
"paths": {
"@/*": ["./*"]
}
"allowImportingTsExtensions": true
},
"include": ["src/**/*.ts", "test/**/*.ts"]
}
10 changes: 0 additions & 10 deletions vitest.config.ts

This file was deleted.

0 comments on commit ab0f49c

Please sign in to comment.