25 lines
689 B
JSON
25 lines
689 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"moduleResolution": "Node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strictFunctionTypes": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny": false,
|
|
"noEmit": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": ["vite/client", "vite-plugin-svg-icons/client", "element-plus-secondary/global"]
|
|
},
|
|
"include": ["src/**/*", "electron-main/**/*.ts", "types/**/*.d.ts", "types"],
|
|
"exclude": ["dist", "lib", "node_modules"]
|
|
}
|
|
|