tsconfig.json 540 B

1234567891011121314151617181920212223
  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. "inlineSourceMap": true,
  8. "inlineSources": true,
  9. "declaration": false,
  10. "removeComments": false,
  11. "sourceRoot": "",
  12. "mapRoot": "",
  13. "outDir": "",
  14. "rootDir": "",
  15. "baseUrl": ".",
  16. "paths": {
  17. "db://assets/*": ["./assets/*"]
  18. }
  19. },
  20. "include": ["assets/**/*"],
  21. "exclude": ["node_modules", "temp", "library"]
  22. }