Skip to content

Commit

Permalink
🔧 revert back to tsc compile step
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeelvalley committed Mar 26, 2024
1 parent 1ee1e94 commit 7778b0f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 35 deletions.
12 changes: 6 additions & 6 deletions jsr.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"name": "@sftsrv/synk",
"version": "0.0.3",
"exports": {
".": "./dist/index.js",
"./in-memory": "./dist/in-memory/index.js",
"./async": "./dist/async/index.js",
"./indexed-db": "./dist/indexed-db/index.js",
"./websocket": "./dist/websocket/index.js"
".": "./src/index.ts",
"./in-memory": "./src/in-memory/index.ts",
"./async": "./src/async/index.ts",
"./indexed-db": "./src/indexed-db/index.ts",
"./websocket": "./src/websocket/index.ts"
},
"publish": {
"exclude": ["!dist"]
"exclude": ["!src"]
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"name": "@sftsv/synk",
"version": "0.0.3",
"description": "A library for developing offline-first web applications based on async data replication and synchronization between clients and the server",
"type": "module",
"type": "commonjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"scripts": {
"build": "tsup",
"build": "tsc",
"test": "vitest",
"test:ui": "vitest --ui",
"tsc": "tsc",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"module": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
Expand Down
26 changes: 0 additions & 26 deletions tsup.config.ts

This file was deleted.

0 comments on commit 7778b0f

Please sign in to comment.