This commit is contained in:
Andras Schmelczer 2025-02-23 10:12:33 +00:00
parent a2b7ad2a19
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",
"version": "0.0.0",
"private": true,
"bin": {
"test-client": "./dist/cli.js"
},
"scripts": {
"dev": "webpack watch --mode development",
"build": "webpack --mode production"
},
"dependencies": {
"sync-client": "file:../sync-client"
},
"devDependencies": {
"uuid": "^11.1.0",
"chalk": "^5.4.1",
"ts-loader": "^9.5.2",
"tslib": "2.8.1",
"typescript": "5.7.3",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
}
}
"name": "test-client",
"version": "0.0.0",
"private": true,
"bin": {
"test-client": "./dist/cli.js"
},
"scripts": {
"dev": "webpack watch --mode development",
"build": "webpack --mode production"
},
"dependencies": {
"sync-client": "file:../sync-client"
},
"devDependencies": {
"uuid": "^11.1.0",
"chalk": "^5.4.1",
"ts-loader": "^9.5.2",
"tslib": "2.8.1",
"typescript": "5.7.3",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
}
}

View file

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