diff options
Diffstat (limited to 'src/arrow/js/tsconfig/tsconfig.bin.cjs.json')
-rw-r--r-- | src/arrow/js/tsconfig/tsconfig.bin.cjs.json | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/arrow/js/tsconfig/tsconfig.bin.cjs.json b/src/arrow/js/tsconfig/tsconfig.bin.cjs.json new file mode 100644 index 000000000..e9671810a --- /dev/null +++ b/src/arrow/js/tsconfig/tsconfig.bin.cjs.json @@ -0,0 +1,12 @@ +// Compiler configuration to build the ES5 CommonJS bin files +{ + "extends": "./tsconfig.base.json", + "exclude": ["../node_modules"], + "include": ["../src/bin/*.ts"], + "compilerOptions": { + "target": "esnext", + "module": "commonjs", + "declaration": false, + "declarationMap": false + } +} |