mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-05 19:22:07 +00:00
7a5c1ec637
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>
22 lines
528 B
JSON
22 lines
528 B
JSON
{
|
|
/* Settings here mimick those included in a generated Vue project (pnpm create vue). */
|
|
/* They are only used for the vite.config.ts file. */
|
|
"extends": "@tsconfig/node22/tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"noEmit": true,
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vite.tsbuildinfo",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"types": [
|
|
"node"
|
|
]
|
|
},
|
|
"include": [
|
|
"./vite.config.ts"
|
|
]
|
|
}
|