style: reformat codebase with oxfmt

This commit is contained in:
Alexander Brown
2026-01-19 16:12:59 -08:00
parent a64a9cac95
commit 677c33f4fe
174 changed files with 25355 additions and 4364 deletions

View File

@@ -3,12 +3,7 @@
"target": "ES2023",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2023",
"ES2023.Array",
"DOM",
"DOM.Iterable"
],
"lib": ["ES2023", "ES2023.Array", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"incremental": true,
"sourceMap": true,
@@ -25,28 +20,17 @@
"allowJs": true,
"verbatimModuleSyntax": true,
"paths": {
"@/*": [
"./src/*"
],
"@/*": ["./src/*"],
"@/utils/formatUtil": [
"./packages/shared-frontend-utils/src/formatUtil.ts"
],
"@/utils/networkUtil": [
"./packages/shared-frontend-utils/src/networkUtil.ts"
],
"@tests-ui/*": [
"./tests-ui/*"
]
"@tests-ui/*": ["./tests-ui/*"]
},
"typeRoots": [
"src/types",
"node_modules/@types",
"./node_modules"
],
"types": [
"vitest/globals",
"@webgpu/types"
],
"typeRoots": ["src/types", "node_modules/@types", "./node_modules"],
"types": ["vitest/globals", "@webgpu/types"],
"outDir": "./dist",
"rootDir": "./"
},
@@ -64,7 +48,7 @@
"tailwind.config.ts",
"tests-ui/**/*",
"vite.config.mts",
"vitest.config.ts",
"vitest.config.ts"
// "vitest.setup.ts",
]
}
}