sawAdmin/tsconfig.json

25 lines
597 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Node",
"strict": false,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
2026-05-14 00:07:39 +08:00
},
2026-05-14 22:45:51 +08:00
"types": ["node"],
2026-05-14 00:07:39 +08:00
"ignoreDeprecations": "6.0"
},
"include": ["src/**/*.ts", "src/**/*.d.ts","src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }]
}