mirror of
https://github.com/vatesfr/xen-orchestra.git
synced 2026-09-11 06:29:51 -05:00
14 lines
434 B
JSON
14 lines
434 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2023",
|
|
"module": "ESNext",
|
|
"types": ["node"], // Only use types from Node.js and packages that are explicitly imported
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"declaration": true, // Generates `.d.ts` files for type safety
|
|
"outDir": "dist" // Outputs compiled code to the `dist` directory
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|