2024-05-14 06:42:25 +02:00
|
|
|
{
|
2024-06-12 02:42:10 +02:00
|
|
|
"include": ["frontend/**/*", "emain/**/*"],
|
2024-05-14 06:42:25 +02:00
|
|
|
"compilerOptions": {
|
2024-05-14 08:45:41 +02:00
|
|
|
"target": "es6",
|
2024-09-17 00:58:35 +02:00
|
|
|
"module": "es2020",
|
2024-05-14 06:42:25 +02:00
|
|
|
"jsx": "preserve",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"downlevelIteration": true,
|
2024-05-28 21:12:28 +02:00
|
|
|
"baseUrl": "./",
|
2024-05-14 06:42:25 +02:00
|
|
|
"paths": {
|
2024-05-14 08:45:41 +02:00
|
|
|
"@/app/*": ["frontend/app/*"],
|
|
|
|
"@/util/*": ["frontend/util/*"],
|
2024-07-23 22:50:23 +02:00
|
|
|
"@/layout/*": ["frontend/layout/*"],
|
2024-05-14 08:45:41 +02:00
|
|
|
"@/store/*": ["frontend/app/store/*"],
|
2024-07-09 00:04:48 +02:00
|
|
|
"@/view/*": ["frontend/app/view/*"],
|
2024-09-19 23:04:47 +02:00
|
|
|
"@/element/*": ["frontend/app/element/*"]
|
2024-07-30 20:44:19 +02:00
|
|
|
},
|
2024-09-04 03:15:23 +02:00
|
|
|
"types": ["vite/client", "vite-plugin-svgr/client"]
|
|
|
|
}
|
2024-05-14 06:42:25 +02:00
|
|
|
}
|