Format
This commit is contained in:
parent
f6ee0b727b
commit
6b9f1e6c12
5 changed files with 32 additions and 14 deletions
|
|
@ -3,9 +3,15 @@
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"module": "ESNext",
|
"module": "ESNext",
|
||||||
"target": "ES2023",
|
"target": "ES2023",
|
||||||
"moduleResolution": "bundler",
|
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"lib": ["DOM", "ESNext"]
|
"moduleResolution": "bundler",
|
||||||
|
"allowSyntheticDefaultImports": true,
|
||||||
|
"lib": [
|
||||||
|
"DOM",
|
||||||
|
"ESNext"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"exclude": ["./dist"]
|
"exclude": [
|
||||||
}
|
"./dist"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -27,4 +27,4 @@
|
||||||
"prettier": "^3.5.2",
|
"prettier": "^3.5.2",
|
||||||
"typescript-eslint": "8.24.1"
|
"typescript-eslint": "8.24.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -6,7 +6,12 @@
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"moduleResolution": "bundler",
|
"moduleResolution": "bundler",
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"lib": ["DOM", "ESNext"]
|
"lib": [
|
||||||
|
"DOM",
|
||||||
|
"ESNext"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"exclude": ["./dist"]
|
"exclude": [
|
||||||
}
|
"./dist"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -11,13 +11,14 @@
|
||||||
"test": "jest --passWithNoTests"
|
"test": "jest --passWithNoTests"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"sync-client": "file:../sync-client",
|
"@types/node": "^22.13.5",
|
||||||
"uuid": "^11.1.0",
|
|
||||||
"chalk": "^5.4.1",
|
"chalk": "^5.4.1",
|
||||||
|
"sync-client": "file:../sync-client",
|
||||||
"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",
|
||||||
|
"uuid": "^11.1.0",
|
||||||
"webpack": "^5.98.0",
|
"webpack": "^5.98.0",
|
||||||
"webpack-cli": "^6.0.1"
|
"webpack-cli": "^6.0.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -5,7 +5,13 @@
|
||||||
"target": "ES2022",
|
"target": "ES2022",
|
||||||
"module": "CommonJS",
|
"module": "CommonJS",
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"lib": ["DOM", "ESNext"]
|
"lib": [
|
||||||
|
"DOM",
|
||||||
|
"ESNext"
|
||||||
|
],
|
||||||
|
"moduleResolution": "node"
|
||||||
},
|
},
|
||||||
"exclude": ["./dist"]
|
"exclude": [
|
||||||
}
|
"./dist"
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue