You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 248B

12345678910111213
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "include": ["src"],
  4. "exclude": ["node_modules", "dist"],
  5. "compilerOptions": {
  6. "rootDir": "src",
  7. "outDir": "./dist/types",
  8. "baseUrl": "src",
  9. "paths": {
  10. "+*": ["./*"]
  11. }
  12. }
  13. }