tsconfig.json 321 B

1234567891011121314
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "../../tsconfig.base.json",
  4. "compilerOptions": {
  5. "baseUrl": ".",
  6. "outDir": "dist",
  7. "declaration": true,
  8. "rootDir": "src",
  9. "noEmit": false,
  10. "module": "CommonJS",
  11. "moduleResolution": "Node"
  12. },
  13. "include": ["./src/**/*"]
  14. }