mirror of
https://github.com/lingke-net/Space.Tab.git
synced 2026-09-12 05:45:17 +08:00
23 lines
560 B
JSON
23 lines
560 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"target": "ESNext",
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"strict": true,
|
||
|
|
"jsx": "preserve",
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"lib": ["ESNext", "DOM"],
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./src/client/*"]
|
||
|
|
},
|
||
|
|
"types": ["node"]
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
|
||
|
|
}
|