Run npm run format

- This has the entirety of the changes.

Part of https://b.corp.google.com/issues/411720532
This commit is contained in:
Taylor Mullen
2025-04-18 18:08:43 -04:00
committed by N. Taylor Mullen
parent fa264e4286
commit 383b917784
26 changed files with 211 additions and 208 deletions

View File

@@ -1,24 +1,23 @@
{
"name": "@gemini-code/server",
"version": "1.0.0",
"description": "Gemini Code Server",
"type": "module",
"main": "src/index.js",
"scripts": {
"build": "tsc && cp package.json dist/",
"clean": "rm -rf dist",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write ."
},
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
"name": "@gemini-code/server",
"version": "1.0.0",
"description": "Gemini Code Server",
"type": "module",
"main": "src/index.js",
"scripts": {
"build": "tsc && cp package.json dist/",
"clean": "rm -rf dist",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write ."
},
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}

View File

@@ -1,3 +1,3 @@
export function helloServer() {
// TODO: add more things in this package
}
// TODO: add more things in this package
}

View File

@@ -1,13 +1,12 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": ".",
"lib": ["DOM", "DOM.Iterable", "ES2020"],
"module": "Node16",
"target": "ES2022",
"composite": true,
},
"exclude": ["node_modules", "dist"],
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": ".",
"lib": ["DOM", "DOM.Iterable", "ES2020"],
"module": "Node16",
"target": "ES2022",
"composite": true
},
"exclude": ["node_modules", "dist"]
}