71 lines
2.3 KiB
Plaintext
71 lines
2.3 KiB
Plaintext
|
|
{
|
||
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
||
|
|
"display": "Base",
|
||
|
|
"compilerOptions": {
|
||
|
|
"composite": false,
|
||
|
|
"target": "ESNext",
|
||
|
|
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
|
||
|
|
"baseUrl": ".",
|
||
|
|
"module": "ESNext",
|
||
|
|
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"paths": {
|
||
|
|
"@lingshu/core-utils": ["./packages/core-utils/src/index.ts"],
|
||
|
|
"@lingshu/core-utils/*": ["./packages/core-utils/src/*"],
|
||
|
|
"@lingshu/form-create": ["./packages/form-create/src/index.ts"],
|
||
|
|
"@lingshu/form-create/*": ["./packages/form-create/src/*"],
|
||
|
|
"@lingshu/lowcode-create": ["./packages/lowcode-create/src/index.ts"],
|
||
|
|
"@lingshu/lowcode-create/*": ["./packages/lowcode-create/src/*"],
|
||
|
|
"@lingshu/form-designer": ["./packages/form-designer/src/index.ts"],
|
||
|
|
"@lingshu/form-designer/*": ["./packages/form-designer/src/*"],
|
||
|
|
"@lingshu/business-components": ["./packages/business-components/src/index.ts"],
|
||
|
|
"@lingshu/business-components/*": ["./packages/business-components/src/*"],
|
||
|
|
"@lingshu/ai-agents": ["./packages/ai-agents/src/index.ts"],
|
||
|
|
"@lingshu/ai-agents/*": ["./packages/ai-agents/src/*"],
|
||
|
|
"@lingshu/business-module": ["./packages/business-module/src/index.ts"],
|
||
|
|
"@lingshu/business-module/*": ["./packages/business-module/src/*"],
|
||
|
|
"@lingshu/types": ["./packages/types/index.d.ts"],
|
||
|
|
"shims": ["./types/shims/index.d.ts"]
|
||
|
|
},
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
|
||
|
|
"strict": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"noImplicitOverride": true,
|
||
|
|
"noImplicitThis": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
|
||
|
|
"inlineSources": false,
|
||
|
|
"noEmit": true,
|
||
|
|
"removeComments": true,
|
||
|
|
"sourceMap": false,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"preserveWatchOutput": true
|
||
|
|
},
|
||
|
|
"exclude": [
|
||
|
|
"**/node_modules/**",
|
||
|
|
"**/dist/**",
|
||
|
|
"**/.turbo/**",
|
||
|
|
"**/coverage/**",
|
||
|
|
"**/build/**",
|
||
|
|
"**/out/**",
|
||
|
|
"**/.nyc_output/**",
|
||
|
|
"**/temp/**",
|
||
|
|
"**/tmp/**",
|
||
|
|
"**/*.spec.ts",
|
||
|
|
"**/*.test.ts",
|
||
|
|
"**/__tests__/**"
|
||
|
|
]
|
||
|
|
}
|