大约有 2 项符合查询结果, 库内数据总量为 31,560 项。 (搜索耗时: 0.0012 秒)
...者只看layaAir调试,这个看自己的需求。 #### 3、修改 `src/tsconfig.json` 在compilerOptions下增加 “sourceMap”:true 修改后的tsconfig.json如下: ```json { "compilerOptions": { "module": "es6", "target": "es6", "baseUrl": "../libs", "outDir": "../build/src", "sourceMap": t...
来源: Laya2.0_文档 发布时间: 20210714
...可以在命令行中添加 `--declaration`(简写 `-d`), 或者在 `tsconfig.json` 中添加 `declaration` 选项。这里以 `tsconfig.json` 为例: ``` { "compilerOptions": { "module": "commonjs", "outDir": "lib", "declaration": true, } } ``` 上例中我们添加了 `outDir` 选项,将...
来源: Laya2.0_文档 发布时间: 20210715