backstage/cli: add common tsconfig

This commit is contained in:
Patrik Oldsberg
2020-04-07 18:05:21 +02:00
parent cc4d4a403e
commit 53fed5a17c
3 changed files with 13 additions and 17 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"extends": "@spotify/web-scripts/config/tsconfig.json",
"exclude": ["**/*.test.*"],
"compilerOptions": {
"allowJs": true,
"noEmit": false,
"declarationMap": true,
"incremental": true,
"module": "es6"
}
}
@@ -1,10 +1,3 @@
{
"extends": "@spotify/web-scripts/config/tsconfig.json",
"exclude": ["**/*.test.*"],
"compilerOptions": {
"allowJs": true,
"noEmit": false,
"declarationMap": true,
"incremental": true
}
"extends": "@backstage/cli/config/tsconfig.json"
}
+1 -9
View File
@@ -1,11 +1,3 @@
{
"extends": "@spotify/web-scripts/config/tsconfig.json",
"exclude": ["**/*.test.*"],
"compilerOptions": {
"allowJs": true,
"noEmit": false,
"declarationMap": true,
"incremental": true,
"module": "es6"
}
"extends": "@backstage/cli/config/tsconfig.json"
}