forked from github/dataease
36 lines
750 B
JSON
36 lines
750 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",
|
|
]
|
|
} |