自定义APP自定义App数据通讯
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
755 B

1 year ago
{
"compilerOptions": {
3 weeks ago
"outDir": "build",
"target": "ESNext",
"lib": ["ES2023","DOM","DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"useDefineForClassFields": true,
"baseUrl":".",
"paths":{
"@/*":["src/*"]
},
1 year ago
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule":true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "preserve",
1 year ago
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
},
"include": [
"vite.config.ts",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue"
]
1 year ago
}