jiuyiUniapp/jiuyi2/TUIKit/tui-customer-service-plugin/tsconfig.json

35 lines
723 B
JSON
Raw Permalink Normal View History

2024-12-18 15:46:27 +08:00
{
"compilerOptions": {
// Type Checking
"strict": true,
"exactOptionalPropertyTypes": true,
"noImplicitAny": false,
// Language and Environment
"target": "ESNext",
// Modules
"moduleResolution": "node",
// Completeness
"skipLibCheck": true,
// Interop Constraints
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
// Emit
"sourceMap": true,
// "strictFunctionTypes": false,
"isolatedModules": false,
"baseUrl": ".",
"paths": {
"@/*": ["components/*"],
},
"lib": ["esnext", "dom"]
},
"include": [
"**/*.js",
"**/*.d.ts",
"**/*.ts",
"**/*.vue",
"typings"
],
"exclude": ["node_modules"]
}