2025-06-14 20:44:50 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2020",
|
|
|
|
"module": "CommonJS",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@shared/*": ["../shared/types/*"]
|
2025-06-19 02:43:34 +00:00
|
|
|
},
|
|
|
|
"outDir": "dist"
|
2025-06-14 20:44:50 +00:00
|
|
|
},
|
|
|
|
"include": ["src/**/*", "../shared/types/**/*"],
|
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
}
|