tsconfig.build.cjs.json 366 B

12345678910111213141516171819
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "./tsconfig.base.json",
  4. "compilerOptions": {
  5. "module": "commonjs",
  6. "rootDir": "./src",
  7. "outDir": "dist/cjs",
  8. "declaration": true,
  9. "noResolve": false,
  10. "preserveConstEnums": true,
  11. "sourceMap": false,
  12. "noEmit": false,
  13. "baseUrl": ".",
  14. "paths": {
  15. }
  16. }
  17. }