2026-01-05 12:19:21 -08:00
|
|
|
{
|
|
|
|
|
"extends": "../../../tsconfig.base.json",
|
|
|
|
|
"compilerOptions": {
|
2026-01-15 13:44:29 -08:00
|
|
|
"module": "ESNext",
|
2026-01-05 12:19:21 -08:00
|
|
|
"declaration": true,
|
|
|
|
|
"outDir": "./dist",
|
2026-01-10 22:32:51 -08:00
|
|
|
"rootDir": "./src",
|
2026-01-10 21:49:28 -08:00
|
|
|
"composite": true,
|
|
|
|
|
"baseUrl": "./",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": [
|
|
|
|
|
"src/*"
|
|
|
|
|
]
|
|
|
|
|
}
|
2026-01-05 12:19:21 -08:00
|
|
|
},
|
2026-01-10 21:49:28 -08:00
|
|
|
"include": [
|
2026-01-10 22:32:51 -08:00
|
|
|
"src/**/*"
|
2026-01-10 21:49:28 -08:00
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"dist"
|
|
|
|
|
]
|
2026-01-05 12:19:21 -08:00
|
|
|
}
|