Rename @cua/ to @trycua/, move ts example to ./examples, rename workflows for better organization

This commit is contained in:
Morgan Dean
2025-06-30 10:14:52 -07:00
parent 8bfa8fbc92
commit b0666df203
30 changed files with 825 additions and 516 deletions

View File

@@ -0,0 +1,29 @@
{
"compilerOptions": {
"target": "esnext",
"lib": [
"es2023"
],
"moduleDetection": "force",
"module": "preserve",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"types": [
"node"
],
"allowSyntheticDefaultImports": true,
"strict": true,
"noUnusedLocals": true,
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"outDir": "build",
},
"include": [
"src"
]
}