From 06950822649169e83f0afd7cd4c09b0771084f66 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期四, 06 三月 2025 17:43:24 +0800 Subject: [PATCH] release: @life-payment/core v0.0.2 --- apps/h5/tsconfig.json | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 55 insertions(+), 0 deletions(-) diff --git a/apps/h5/tsconfig.json b/apps/h5/tsconfig.json new file mode 100644 index 0000000..e49306f --- /dev/null +++ b/apps/h5/tsconfig.json @@ -0,0 +1,55 @@ +{ + "compilerOptions": { + "module": "ESNext", + "moduleResolution": "Node", + "useDefineForClassFields": true, + "jsx": "preserve", + "jsxImportSource": "vue", + + "noImplicitThis": true, + "isolatedModules": true, + + "target": "ESNext", + + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "skipLibCheck": true, + + "strict": false, + "baseUrl": ".", + "allowJs": true, + "importsNotUsedAsValues": "preserve", + "preserveValueImports": false, + "resolveJsonModule": true, + "lib": ["dom", "esnext"], + "incremental": true, + "paths": { + "@/*": ["src/*"], + "@build/*": ["build/*"], + "@config/*": ["config/*"], + "@mock/*": ["mock/*"] + // "@bole-core/*": ["packages/*"] + }, + "types": [ + "node", + "vite/client", + "vite-svg-loader", + "element-plus/global", + "@bole-core/components/global" + ] + // "typeRoots": ["./node_modules/@types/", "./types"] + }, + "include": [ + "src/**/*.ts", + "build/**/*.ts", + "src/**/*.d.ts", + "src/**/*.tsx", + "src/**/*.vue", + "types/**/*.d.ts", + "vite.config.ts", + "auto-imports.d.ts", + "components.d.ts", + "lib/vuedraggable/dist/vuedraggable.umd.js" + ], + "exclude": ["node_modules", "dist"] +} -- Gitblit v1.9.1