@chatbi-v/cli 1.0.5 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/default/.gitignore.hbs +3 -0
- package/dist/default/README.md.hbs +30 -0
- package/dist/default/apps/main/index.html.hbs +13 -0
- package/dist/default/apps/main/package.json.hbs +20 -0
- package/dist/default/apps/main/postcss.config.cjs.hbs +6 -0
- package/dist/default/apps/main/src/App.tsx.hbs +162 -0
- package/dist/default/apps/main/src/components/NavIcon.tsx.hbs +41 -0
- package/dist/default/apps/main/src/hooks/usePluginLoader.ts.hbs +25 -0
- package/dist/default/apps/main/src/index.css.hbs +8 -0
- package/dist/default/apps/main/src/main.tsx.hbs +13 -0
- package/dist/default/apps/main/src/pages/Guide.tsx.hbs +133 -0
- package/dist/default/apps/main/tailwind.config.cjs.hbs +17 -0
- package/dist/default/apps/main/tsconfig.json.hbs +10 -0
- package/dist/default/apps/main/vite.config.ts.hbs +16 -0
- package/dist/default/package.json.hbs +33 -0
- package/dist/default/plugins/demo-plugin/package.json.hbs +17 -0
- package/dist/default/plugins/demo-plugin/src/index.tsx.hbs +44 -0
- package/dist/default/plugins/demo-plugin/tsconfig.json.hbs +10 -0
- package/dist/default/pnpm-workspace.yaml.hbs +3 -0
- package/dist/default/tsconfig.json.hbs +24 -0
- package/dist/index.js +5885 -372
- package/package.json +5 -3
- package/templates/default/.gitignore.hbs +3 -0
- package/templates/default/README.md.hbs +30 -0
- package/templates/default/apps/main/index.html.hbs +13 -0
- package/templates/default/apps/main/package.json.hbs +20 -0
- package/templates/default/apps/main/postcss.config.cjs.hbs +6 -0
- package/templates/default/apps/main/src/App.tsx.hbs +162 -0
- package/templates/default/apps/main/src/components/NavIcon.tsx.hbs +41 -0
- package/templates/default/apps/main/src/hooks/usePluginLoader.ts.hbs +25 -0
- package/templates/default/apps/main/src/index.css.hbs +8 -0
- package/templates/default/apps/main/src/main.tsx.hbs +13 -0
- package/templates/default/apps/main/src/pages/Guide.tsx.hbs +133 -0
- package/templates/default/apps/main/tailwind.config.cjs.hbs +17 -0
- package/templates/default/apps/main/tsconfig.json.hbs +10 -0
- package/templates/default/apps/main/vite.config.ts.hbs +16 -0
- package/templates/default/package.json.hbs +33 -0
- package/templates/default/plugins/demo-plugin/package.json.hbs +17 -0
- package/templates/default/plugins/demo-plugin/src/index.tsx.hbs +44 -0
- package/templates/default/plugins/demo-plugin/tsconfig.json.hbs +10 -0
- package/templates/default/pnpm-workspace.yaml.hbs +3 -0
- package/templates/default/tsconfig.json.hbs +24 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ESNext",
|
|
4
|
+
"useDefineForClassFields": true,
|
|
5
|
+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
6
|
+
"allowJs": false,
|
|
7
|
+
"skipLibCheck": true,
|
|
8
|
+
"esModuleInterop": false,
|
|
9
|
+
"allowSyntheticDefaultImports": true,
|
|
10
|
+
"strict": true,
|
|
11
|
+
"forceConsistentCasingInFileNames": true,
|
|
12
|
+
"module": "ESNext",
|
|
13
|
+
"moduleResolution": "Node",
|
|
14
|
+
"resolveJsonModule": true,
|
|
15
|
+
"isolatedModules": true,
|
|
16
|
+
"noEmit": true,
|
|
17
|
+
"jsx": "react-jsx",
|
|
18
|
+
"baseUrl": ".",
|
|
19
|
+
"paths": {
|
|
20
|
+
"@chatbi-v/core": ["./.chatbi/core"]
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"include": ["apps/main/src", "plugins/*/src"]
|
|
24
|
+
}
|