tsconfig-module.json 285 B

123456789
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "./tsconfig-lib.json",
  4. "compilerOptions": {
  5. // Emit exactly the same code as normal tsconfig, but with ES6 import & export statements instead of CommonJS
  6. "module": "esnext",
  7. "outDir": "lib-module"
  8. }
  9. }