Add Bun and Moon workspace configuration

This commit is contained in:
Asep Haryana Saputra
2026-05-22 12:14:27 +00:00
parent 81bce711b6
commit 4413133bf3
7 changed files with 66 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"@zeavis/shared": ["packages/shared/src/index.ts"],
"@zeavis/shared/*": ["packages/shared/src/*"]
}
}
}