feat(init): all

This commit is contained in:
2025-12-31 10:44:59 +08:00
commit 4fc473fff2
19 changed files with 2081 additions and 0 deletions

34
.gitignore vendored Normal file
View File

@@ -0,0 +1,34 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
.DS_Store
dist
dist-ssr
coverage
*.local
/cypress/videos/
/cypress/screenshots/
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
*.tsbuildinfo
.vscode
# apps/*

1
README.md Normal file
View File

@@ -0,0 +1 @@
# ddd

1
apps/demo/env.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
/// <reference types="vite/client" />

12
apps/demo/index.html Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>

9
apps/demo/package.json Normal file
View File

@@ -0,0 +1,9 @@
{
"name": "@nanxing-admin/demo",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite"
}
}

3
apps/demo/src/App.vue Normal file
View File

@@ -0,0 +1,3 @@
<template>
<div>Demo</div>
</template>

View File

@@ -0,0 +1 @@
@import 'tailwindcss';

9
apps/demo/src/main.ts Normal file
View File

@@ -0,0 +1,9 @@
import './assets/style/tailwind.css';
import { createApp } from 'vue';
import App from './App.vue';
import { createWebApp } from 'nanxing-admin';
createWebApp();
createApp(App).mount('#app');

9
apps/demo/tsconfig.json Normal file
View File

@@ -0,0 +1,9 @@
{
"extends": "../../tsconfig.app.json",
"include": ["env.d.ts", "src/**/*.vue", "src/**/*.ts", "src/**/*.tsx", "src/**/*.js", "src/**/*.jsx"],
"exclude": ["src/**/__test__", "node_modules", "dist"],
"compilerOptions": {
"types": ["node"],
"allowSyntheticDefaultImports": true
}
}

27
apps/demo/vite.config.ts Normal file
View File

@@ -0,0 +1,27 @@
import { fileURLToPath, URL } from 'node:url';
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import vueJsx from '@vitejs/plugin-vue-jsx';
import tailwindcss from '@tailwindcss/vite';
// https://vitejs.dev/config/
export default defineConfig({
// base: 影响打包静态资源的路径
base: './',
plugins: [vue(), vueJsx(), tailwindcss()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
css: {
preprocessorOptions: {
scss: { api: 'modern-compiler' },
},
},
server: {
host: true,
},
});

36
package.json Normal file
View File

@@ -0,0 +1,36 @@
{
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev:demo": "pnpm --filter @nanxing-admin/demo dev"
},
"keywords": [],
"author": "hazex.cn",
"license": "ISC",
"packageManager": "pnpm@10.25.0",
"engines": {
"node": ">= 20"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@vue/tsconfig": "^0.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vue-tsc": "^3.2.1"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.18",
"@tsconfig/node18": "^18.2.6",
"@vitejs/plugin-vue": "^6.0.3",
"@vitejs/plugin-vue-jsx": "^5.1.3",
"nanxing-admin": "workspace:*",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"tailwindcss": "^4.1.18",
"vue": "^3.5.26",
"vue-router": "^4.6.4"
}
}

View File

@@ -0,0 +1,3 @@
export function createWebApp() {
console.log('Created web app');
}

View File

@@ -0,0 +1,4 @@
{
"name": "nanxing-admin",
"version": "0.1.0"
}

View File

@@ -0,0 +1,3 @@
{
"extends": "../../tsconfig.app.json"
}

1887
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

3
pnpm-workspace.yaml Normal file
View File

@@ -0,0 +1,3 @@
packages:
- packages/*
- apps/*

11
tsconfig.app.json Normal file
View File

@@ -0,0 +1,11 @@
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"exclude": ["node_modules"],
"compilerOptions": {
"composite": true,
"noEmit": true,
"paths": {
"@/*": ["./src"]
}
}
}

11
tsconfig.json Normal file
View File

@@ -0,0 +1,11 @@
{
"files": [],
"references": [
{
"path": "./tsconfig.node.json"
},
{
"path": "./tsconfig.app.json"
}
]
}

17
tsconfig.node.json Normal file
View File

@@ -0,0 +1,17 @@
{
"extends": "@tsconfig/node18/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"nightwatch.conf.*",
"playwright.config.*"
],
"compilerOptions": {
"composite": true,
"noEmit": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["node"]
}
}