mirror of
https://github.com/moeru-ai/airi.git
synced 2026-08-14 00:48:06 +00:00
24 lines
394 B
JSON
24 lines
394 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"rootDir": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"types": [
|
|
"node"
|
|
],
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"vitest.config.ts"
|
|
]
|
|
}
|