mirror of
https://codeberg.org/Sevichecc/Seigwai.git
synced 2025-04-29 23:49:29 +08:00
21 lines
596 B
JSON
21 lines
596 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"allowJs": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
"references": [{ "path": "./tsconfig.node.json" }],
|
|
"extends": "./.nuxt/tsconfig.json"
|
|
}
|