21 lines
436 B
JSON
21 lines
436 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["ESNext"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"types": ["bun-types"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@core/*": ["src/core/*"],
|
|
"@api/*": ["src/api/*"],
|
|
"@config/*": ["src/config/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "ui"]
|
|
}
|