Files
deckyvault/plugins/decky-vault/tsconfig.json
T
adrianbonpin cd72b7a948 refactor: convert to bun workspaces monorepo
- Move web app into apps/web/
- Create packages/shared/ with shared types
- Create plugins/decky-vault/ scaffold
- Root package.json manages workspaces only
2026-06-28 05:20:28 +08:00

19 lines
400 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"jsx": "react-jsx",
"jsxImportSource": "react",
"outDir": "./dist",
"rootDir": "./src",
"declaration": false,
"sourceMap": false,
"esModuleInterop": true
},
"include": ["src"],
"references": [
{ "path": "../../packages/shared" }
]
}