mirror of
https://github.com/moeru-ai/airi.git
synced 2026-05-03 00:40:10 +00:00
28 lines
559 B
JSON
28 lines
559 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"DOM.AsyncIterable",
|
|
"WebWorker"
|
|
],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"types": [
|
|
"vite/client",
|
|
"unplugin-vue-router/client"
|
|
],
|
|
"noUnusedLocals": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts"
|
|
]
|
|
}
|