tsconfig.json 442 B

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