revert back to single tsconfig.json

This commit is contained in:
Steven Hugg 2021-07-24 11:40:46 -05:00
parent f634007e51
commit 820985cb73
8 changed files with 20 additions and 118 deletions

View File

@ -1,10 +0,0 @@
{
"extends": "../../tsconfig-base.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "../../gen/common"
},
"include": [
"**/*.ts"
]
}

View File

@ -1,13 +0,0 @@
{
"extends": "../../tsconfig-base.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "../../gen/ide"
},
"references": [
{ "path": "../common" }
],
"include": [
"**/*.ts"
]
}

View File

@ -1,13 +0,0 @@
{
"extends": "../../tsconfig-base.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "../../gen/machine"
},
"references": [
{ "path": "../common" }
],
"include": [
"**/*.ts"
]
}

View File

@ -1,15 +0,0 @@
{
"extends": "../../tsconfig-base.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "../../gen/platform"
},
"references": [
{ "path": "../common" },
{ "path": "../machine" },
{ "path": "../ide" },
],
"include": [
"**/*.ts"
]
}

View File

@ -1,14 +0,0 @@
{
"extends": "../../tsconfig-base.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "../../gen/tools"
},
"references": [
{ "path": "../common" },
{ "path": "../machine" }
],
"include": [
"**/*.ts"
]
}

View File

@ -1,13 +0,0 @@
{
"extends": "../../tsconfig-base.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "../../gen/worker"
},
"references": [
{ "path": "../common" }
],
"include": [
"**/*.ts"
]
}

View File

@ -1,20 +0,0 @@
{
"compilerOptions": {
"composite": true,
"allowJs": false,
"checkJs": false,
"sourceMap": true,
"target": "es5",
"lib": [
"es2017",
"dom"
],
"noImplicitThis": false,
"noImplicitAny": false,
"preserveConstEnums": true,
"alwaysStrict": true,
"strictNullChecks": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
}
}

View File

@ -1,23 +1,23 @@
{
"files": [],
"references": [
{
"path": "./src/common"
},
{
"path": "./src/machine"
},
{
"path": "./src/platform"
},
{
"path": "./src/ide"
},
{
"path": "./src/worker"
},
{
"path": "./src/tools"
"include": [
"src/**/*.ts"
],
"compilerOptions": {
"outDir": "gen",
"allowJs": false,
"checkJs": false,
"sourceMap": true,
"target": "es5",
"lib": [
"es2017",
"dom"
],
"noImplicitThis": false,
"noImplicitAny": false,
"preserveConstEnums": true,
"alwaysStrict": true,
"strictNullChecks": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
}
]
}