mirror of
https://github.com/EasyTier/EasyTier.git
synced 2024-11-16 03:32:43 +08:00
32 lines
811 B
JSON
32 lines
811 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
||
|
"target": "ES2020",
|
||
|
"useDefineForClassFields": true,
|
||
|
"module": "ESNext",
|
||
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||
|
"skipLibCheck": true,
|
||
|
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
|
||
|
/* Bundler mode */
|
||
|
"moduleResolution": "Bundler",
|
||
|
"allowImportingTsExtensions": true,
|
||
|
"isolatedModules": true,
|
||
|
"moduleDetection": "force",
|
||
|
"noEmit": true,
|
||
|
"jsx": "preserve",
|
||
|
|
||
|
/* Linting */
|
||
|
"strict": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noUncheckedSideEffectImports": true,
|
||
|
"types": [
|
||
|
"@modyfi/vite-plugin-yaml/modules"
|
||
|
],
|
||
|
},
|
||
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
|
||
|
}
|