a6a21bed46
* feat: add env specific serve commands where appropriate for apps * fix: typo in command call * feat: add custom executor for serving apps * chore: clean up project files and use the custom executor * chore: patch readmes * chore: split out logs into their own function * fix: prevent overriding env when no flag passed in * fix: add tsc to postinstall to take care of compiling the custom executors * fix: remove the custom serve executor from trading
14 lines
282 B
JSON
14 lines
282 B
JSON
{
|
|
"extends": "../../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"types": ["node"],
|
|
"importHelpers": false,
|
|
"sourceMap": false,
|
|
"inlineSourceMap": true
|
|
},
|
|
"include": ["impl.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|