UNPKG

@tianyio/quality-helper

Version:

A comprehensive quality helper tool for project scaffolding and management

41 lines (38 loc) 806 B
{ "compilerOptions": { "jsx": "preserve", "outDir": "./dist", "rootDir": ".", "paths": { "used-lib-name/export": ["used-lib-relative-path/src/export-file-name"], "@components/*": ["./src/components/*"], "@utils/*": ["./src/utils/*"], "@assets/*": ["./src/assets/*"], "@styles/*": ["./src/styles/*"], "@views/*": ["./src/views/*"] } }, "include": [ "**/*.ts", "**/*.tsx", "**/*.d.ts", "**/*.vue", "**/*.html", "used-lib-relative-path/src/export-file-name" ], "exclude": [ "**/node_modules", "**/dist", "**/build", "**/out", "**/lib", "**/coverage", "**/docs", "**/static", "**/.tsbuildinfo", "**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx" ] }