43 lines
893 B
JSON
43 lines
893 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictFunctionTypes": false,
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"experimentalDecorators": true,
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"types": [
|
|
"vite/client"
|
|
],
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
],
|
|
"/#/*": [
|
|
"types/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"env.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"assets/**/*.jpg"
|
|
],
|
|
} |