"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