packages/cli: remove separate tsconfig

This commit is contained in:
Patrik Oldsberg
2020-06-05 10:23:20 +02:00
parent f4a75ee650
commit 1bf9cffd1e
2 changed files with 3 additions and 12 deletions
+3 -1
View File
@@ -24,8 +24,10 @@ if (!isLocal || process.env.BACKSTAGE_E2E_CLI_TEST) {
require('..');
} else {
require('ts-node').register({
project: path.resolve(__dirname, '../tsconfig.build.json'),
transpileOnly: true,
compilerOptions: {
module: 'CommonJS',
},
});
require('../src');
-11
View File
@@ -1,11 +0,0 @@
{
"extends": "./config/tsconfig.json",
"include": ["src"],
"exclude": ["**/*.test.*"],
"compilerOptions": {
"outDir": "dist",
"emitDeclarationOnly": false,
"removeComments": true,
"module": "CommonJS"
}
}