tsconfig.json 523 B

1234567891011121314151617181920
  1. {
  2. /* Base configuration. Do not edit this field. */
  3. "extends": "./temp/tsconfig.cocos.json",
  4. /* Add your custom configuration here. */
  5. "compilerOptions": {
  6. "target": "ES2015",
  7. "module": "ES2015",
  8. "strict": false,
  9. "types": [
  10. "./temp/declarations/cc",
  11. "./temp/declarations/jsb",
  12. "./temp/declarations/cce.env"
  13. ],
  14. "experimentalDecorators": true,
  15. "isolatedModules": true,
  16. "moduleResolution": "node",
  17. "noEmit": true,
  18. "forceConsistentCasingInFileNames": true
  19. }
  20. }