tsconfig.json 439 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "extends": "../tsconfig.base.json",
  3. "compilerOptions": {
  4. "baseUrl": ".",
  5. "rootDir": "./src",
  6. "outDir": "./dist",
  7. "paths": {
  8. "@esotericsoftware/spine-core": [
  9. "../spine-core/src"
  10. ],
  11. "@esotericsoftware/spine-webgl": [
  12. "../spine-webgl/src"
  13. ]
  14. }
  15. },
  16. "include": [
  17. "**/*.ts"
  18. ],
  19. "exclude": [
  20. "dist/**/*.d.ts"
  21. ],
  22. "references": [
  23. {
  24. "path": "../spine-core"
  25. },
  26. {
  27. "path": "../spine-webgl"
  28. }
  29. ]
  30. }