mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-06 03:32:06 +00:00
22 lines
527 B
JSON
22 lines
527 B
JSON
{
|
|
/* Settings here mimick those included in a generated Vue project (npm create vue). */
|
|
/* They are only used for the vite.config.ts file. */
|
|
"extends": "@tsconfig/node24/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"
|
|
]
|
|
}
|