blob: e9671810a7bcb6ae76aa94b6e08d6b25e80eaf3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
}
}
|