14 changed files with 1787 additions and 5015 deletions
@ -0,0 +1,4 @@ |
|||
{ |
|||
"extends": "@vben/ts-config/node.json", |
|||
"include": ["src"] |
|||
} |
|||
@ -0,0 +1,4 @@ |
|||
{ |
|||
"extends": "@vben/ts-config/node.json", |
|||
"include": ["src"] |
|||
} |
|||
@ -0,0 +1,27 @@ |
|||
{ |
|||
"$schema": "https://json.schemastore.org/tsconfig", |
|||
"display": "Base", |
|||
"compilerOptions": { |
|||
"target": "ESNext", |
|||
"module": "ESNext", |
|||
"moduleResolution": "node", |
|||
"strict": true, |
|||
"declaration": true, |
|||
"noImplicitOverride": true, |
|||
"noUnusedLocals": true, |
|||
"esModuleInterop": true, |
|||
"useUnknownInCatchVariables": false, |
|||
"composite": false, |
|||
"declarationMap": false, |
|||
"forceConsistentCasingInFileNames": true, |
|||
"inlineSources": false, |
|||
"isolatedModules": true, |
|||
"skipLibCheck": true, |
|||
"noUnusedParameters": false, |
|||
"preserveWatchOutput": true, |
|||
"experimentalDecorators": true, |
|||
"resolveJsonModule": true, |
|||
"removeComments": true |
|||
}, |
|||
"exclude": ["**/node_modules/**", "**/dist/**"] |
|||
} |
|||
@ -0,0 +1,12 @@ |
|||
{ |
|||
"$schema": "https://json.schemastore.org/tsconfig", |
|||
"display": "Node Config", |
|||
"extends": "./base.json", |
|||
"compilerOptions": { |
|||
"lib": ["ESNext"], |
|||
"types": ["vite/client"], |
|||
"noImplicitAny": true, |
|||
"sourceMap": true, |
|||
"noEmit": true |
|||
} |
|||
} |
|||
@ -0,0 +1,10 @@ |
|||
{ |
|||
"$schema": "https://json.schemastore.org/tsconfig", |
|||
"display": "Vue Library", |
|||
"extends": "./base.json", |
|||
"compilerOptions": { |
|||
"jsx": "preserve", |
|||
"lib": ["ESNext", "DOM"], |
|||
"noImplicitAny": false |
|||
} |
|||
} |
|||
File diff suppressed because it is too large
Loading…
Reference in new issue