首页 > 其他分享 >Typescript TSConfig

Typescript TSConfig

时间:2022-12-15 18:00:11浏览次数:72  
标签:Typescript modules ts xx compilerOptions TSConfig

  "references": [     { "path": "modules/xxxx" },     { "path": "modules/xxx" },   ],   reference 可以提高构建速度   "compilerOptions": {     "paths": {       "xx": ["modules/xxx/src/core/main/ts/xx/Main"],     } 当使用import的时候,如何查找包的引用   { "compilerOptions": {}, "files": [ "core.ts", "sys.ts", "types.ts", "scanner.ts", "parser.ts", "utilities.ts", "binder.ts", "checker.ts", "tsc.ts" ] } 指定编译哪些文件     { "include": ["src/**/*", "tests/**/*"] } 当文件数量比较大,可以使用 include, 允许使用通配符  

标签:Typescript,modules,ts,xx,compilerOptions,TSConfig
From: https://www.cnblogs.com/chenyingzuo/p/16985731.html

相关文章