mirror of
https://github.com/doocs/md.git
synced 2024-11-24 19:10:34 +08:00
32 lines
782 B
JSON
32 lines
782 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"composite": true,
|
||
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
||
|
"target": "ES2020",
|
||
|
"jsx": "preserve",
|
||
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||
|
"moduleDetection": "force",
|
||
|
"useDefineForClassFields": true,
|
||
|
"baseUrl": "./",
|
||
|
"module": "ESNext",
|
||
|
|
||
|
/* Bundler mode */
|
||
|
"moduleResolution": "bundler",
|
||
|
"paths": {
|
||
|
"@/*": ["src/*"]
|
||
|
},
|
||
|
"resolveJsonModule": true,
|
||
|
"allowImportingTsExtensions": true,
|
||
|
|
||
|
/* Linting */
|
||
|
"strict": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noEmit": true,
|
||
|
"isolatedModules": true,
|
||
|
"skipLibCheck": true
|
||
|
},
|
||
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
|
||
|
}
|