| 12345678910111213141516 |
- {
- /* Base configuration. Do not edit this field. */
- "extends": "./temp/tsconfig.cocos.json",
- /* Add your custom configuration here. */
- "compilerOptions": {
- "strict": false,
- "target": "ES6",
- // 或其他更早的版本,但确保lib中包含es2017
- "lib": [
- "es2017",
- // 这提供了padStart的类型定义
- "dom"
- // 如果你的代码运行在浏览器环境中,可能需要这个
- ]
- }
- }
|