502502_Hospital/tsconfig.json

42 lines
1.2 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"declaration": true,
"emitDeclarationOnly": false,
"esModuleInterop": true,
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"removeComments": true,
"forceConsistentCasingInFileNames": true,
"composite": true,
"allowSyntheticDefaultImports": true,
/* Bundler mode */
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": false,
"jsx": "preserve",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".", // 解析非相对模块的基地址,默认是当前目录
"paths": {
//路径映射相对于baseUrl
"@/*": ["src/*"]
},
"typeRoots": ["./node_modules/@types", "./src/types/global.d.ts"],
"rootDir": "src",
"outDir": "dist"
},
"include": ["src/**/**.ts", "src/**/**.d.ts", "src/**/**.vue"],
"exclude": ["node_modules"]
}