mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-06 03:32:06 +00:00
91a8ce730c
Update Node and TypeScript toolchain references, CI node version, lockfile resolution, and include current workspace/runtime files for consistency. Co-authored-by: Cursor <cursoragent@cursor.com>
27 lines
722 B
JSON
27 lines
722 B
JSON
{
|
|
/* Settings here partially mimick those included in a generated Vue project (pnpm create vue). */
|
|
/* Settings used for anything browser related (dashboard and graphics). */
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.browser.tsbuildinfo",
|
|
},
|
|
"include": [
|
|
"./src/browser_shared/**/*.ts",
|
|
"./src/browser_shared/**/*.vue",
|
|
"./src/dashboard/**/*.ts",
|
|
"./src/dashboard/**/*.vue",
|
|
"./src/graphics/**/*.ts",
|
|
"./src/graphics/**/*.vue",
|
|
"./src/types/**/*.d.ts"
|
|
]
|
|
}
|