mirror of
https://gitea.tendokyu.moe/Kayori/Medusa.net.git
synced 2026-09-25 07:48:10 +03:00
25 lines
576 B
JSON
25 lines
576 B
JSON
{
|
|
"extends": "@tsconfig/node20/tsconfig.json",
|
|
"include": [
|
|
"vite.config.*",
|
|
"vitest.config.*",
|
|
"cypress.config.*",
|
|
"nightwatch.conf.*",
|
|
"playwright.config.*",
|
|
"./typed-router.d.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"noEmit": true,
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
},
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"types": ["node", "vite-plugin-vue-layouts-next/client", "unplugin-vue-router/client"]
|
|
}
|
|
}
|