This commit is contained in:
Andras Schmelczer 2025-02-23 10:12:33 +00:00
commit 0bf5f024ea
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 33 additions and 38 deletions

View file

@ -1,24 +1,24 @@
{ {
"name": "test-client", "name": "test-client",
"version": "0.0.0", "version": "0.0.0",
"private": true, "private": true,
"bin": { "bin": {
"test-client": "./dist/cli.js" "test-client": "./dist/cli.js"
}, },
"scripts": { "scripts": {
"dev": "webpack watch --mode development", "dev": "webpack watch --mode development",
"build": "webpack --mode production" "build": "webpack --mode production"
}, },
"dependencies": { "dependencies": {
"sync-client": "file:../sync-client" "sync-client": "file:../sync-client"
}, },
"devDependencies": { "devDependencies": {
"uuid": "^11.1.0", "uuid": "^11.1.0",
"chalk": "^5.4.1", "chalk": "^5.4.1",
"ts-loader": "^9.5.2", "ts-loader": "^9.5.2",
"tslib": "2.8.1", "tslib": "2.8.1",
"typescript": "5.7.3", "typescript": "5.7.3",
"webpack": "^5.98.0", "webpack": "^5.98.0",
"webpack-cli": "^6.0.1" "webpack-cli": "^6.0.1"
} }
} }

View file

@ -1,16 +1,11 @@
{ {
"compilerOptions": { "compilerOptions": {
"baseUrl": ".", "baseUrl": ".",
"strict": true, "strict": true,
"target": "ES2022", "target": "ES2022",
"module": "CommonJS", "module": "CommonJS",
"esModuleInterop": true, "esModuleInterop": true,
"lib": [ "lib": ["DOM", "ESNext"]
"DOM", },
"ESNext" "exclude": ["./dist"]
]
},
"exclude": [
"./dist"
]
} }