tsconfig.cocos.json 760 B

123456789101112131415161718192021222324252627
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "compilerOptions": {
  4. "target": "ES2015",
  5. "module": "ES2015",
  6. "strict": true,
  7. "types": [
  8. "./temp/declarations/cc.custom-macro",
  9. "./temp/declarations/jsb",
  10. "./temp/declarations/cc",
  11. "./temp/declarations/cc.env"
  12. ],
  13. "paths": {
  14. "db://internal/*": [
  15. "/Applications/Cocos/Creator/3.8.6/CocosCreator.app/Contents/Resources/resources/3d/engine/editor/assets/*"
  16. ],
  17. "db://assets/*": [
  18. "/Users/wenshuang/Desktop/公司游戏/GunfightShoot/assets/*"
  19. ]
  20. },
  21. "experimentalDecorators": true,
  22. "isolatedModules": true,
  23. "moduleResolution": "node",
  24. "noEmit": true,
  25. "forceConsistentCasingInFileNames": true
  26. }
  27. }