mirror of
https://github.com/moeru-ai/airi.git
synced 2026-05-17 04:20:26 +00:00
Co-authored-by: Neko Ayaka <neko@ayaka.moe> Co-authored-by: Lovehsigure_520 <1260907335@qq.com>
26 lines
475 B
JSON
26 lines
475 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ESNext",
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"vitest",
|
|
"node"
|
|
],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts"
|
|
]
|
|
}
|