tsconfig.json 201 B

12345678910111213
  1. {
  2. "extends": "../../tsconfig.base",
  3. "compilerOptions": {
  4. "rootDir": "src",
  5. "outDir": "tsc"
  6. },
  7. "include": [
  8. "src/**/*"
  9. ],
  10. "references": [
  11. { "path": "../core-preact" }
  12. ]
  13. }