feat(envelope-generator-react-ui): init

This commit is contained in:
2025-07-21 15:13:16 +02:00
parent 286e17a900
commit cce240125d
242 changed files with 18884 additions and 4 deletions

View File

@@ -0,0 +1,32 @@
{
"compilerOptions": {
/* Bundler */
"baseUrl": ".",
"module": "ESNext",
"jsx": "react-jsx",
"allowJs": true,
"resolveJsonModule": true,
/* Build */
"target": "ES2020",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"moduleResolution": "bundler",
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"incremental": true,
"skipLibCheck": true,
"esModuleInterop": true,
"isolatedModules": true,
/* Linting */
"strict": true,
"noEmit": true,
"strictNullChecks": true
},
"include": ["src"],
"exclude": ["node_modules"],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}