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>
22 lines
519 B
JSON
22 lines
519 B
JSON
{
|
|
/* Settings used for anything extension related. */
|
|
"extends": "@tsconfig/node24/tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.extension.tsbuildinfo",
|
|
"rootDir": "./src/extension",
|
|
"outDir": "./extension",
|
|
"verbatimModuleSyntax": true,
|
|
},
|
|
"include": [
|
|
"./src/extension/**/*.ts",
|
|
"./src/types/**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"./src/types/augment-window.d.ts"
|
|
]
|
|
}
|