mirror of
https://github.com/moeru-ai/airi.git
synced 2026-04-28 06:29:33 +00:00
42 lines
796 B
JSON
42 lines
796 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"vitepress/client",
|
|
"vue"
|
|
],
|
|
"strict": true,
|
|
"declaration": false,
|
|
"outDir": "dist",
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"/**/*.vue",
|
|
"components/**/*.vue",
|
|
".vitepress/**/*.vue",
|
|
"/**/*.ts",
|
|
"/**/*.md",
|
|
".vitepress/**/*.ts",
|
|
".vitepress/**/*.vue"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"vueCompilerOptions": {
|
|
"vitePressExtensions": [".md"]
|
|
}
|
|
}
|