Use more standard name for shared extension tsconfig

This enables Intellisense in the `tsconfig.base` file
This commit is contained in:
Matt Bierner
2021-04-12 15:58:38 -07:00
parent 98bbcddec3
commit 119581fc2a
38 changed files with 61 additions and 61 deletions

View File

@@ -1,9 +1,9 @@
{
"extends": "../../shared.tsconfig.json",
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./out"
},
"include": [
"src/**/*"
]
}
}

View File

@@ -1,5 +1,5 @@
{
"extends": "../../shared.tsconfig.json",
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./out",
"sourceMap": true,
@@ -8,4 +8,4 @@
"include": [
"src/**/*"
]
}
}