Files
scoreko-dev/tsconfig.browser.json
T
Pandipipas 7a5c1ec637 Migrate package management from npm to pnpm.
Standardize local and CI workflows on pnpm 11.0.8, replace npm commands in docs/config, and swap lockfiles for reproducible installs.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-08 18:46:55 +02:00

22 lines
652 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": ".",
"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"
]
}