mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-29 14:51:17 +00:00
revert back to single tsconfig.json
This commit is contained in:
parent
f634007e51
commit
820985cb73
@ -1,10 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "../../tsconfig-base.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"rootDir": ".",
|
|
||||||
"outDir": "../../gen/common"
|
|
||||||
},
|
|
||||||
"include": [
|
|
||||||
"**/*.ts"
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "../../tsconfig-base.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"rootDir": ".",
|
|
||||||
"outDir": "../../gen/ide"
|
|
||||||
},
|
|
||||||
"references": [
|
|
||||||
{ "path": "../common" }
|
|
||||||
],
|
|
||||||
"include": [
|
|
||||||
"**/*.ts"
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "../../tsconfig-base.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"rootDir": ".",
|
|
||||||
"outDir": "../../gen/machine"
|
|
||||||
},
|
|
||||||
"references": [
|
|
||||||
{ "path": "../common" }
|
|
||||||
],
|
|
||||||
"include": [
|
|
||||||
"**/*.ts"
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "../../tsconfig-base.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"rootDir": ".",
|
|
||||||
"outDir": "../../gen/platform"
|
|
||||||
},
|
|
||||||
"references": [
|
|
||||||
{ "path": "../common" },
|
|
||||||
{ "path": "../machine" },
|
|
||||||
{ "path": "../ide" },
|
|
||||||
],
|
|
||||||
"include": [
|
|
||||||
"**/*.ts"
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "../../tsconfig-base.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"rootDir": ".",
|
|
||||||
"outDir": "../../gen/tools"
|
|
||||||
},
|
|
||||||
"references": [
|
|
||||||
{ "path": "../common" },
|
|
||||||
{ "path": "../machine" }
|
|
||||||
],
|
|
||||||
"include": [
|
|
||||||
"**/*.ts"
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "../../tsconfig-base.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"rootDir": ".",
|
|
||||||
"outDir": "../../gen/worker"
|
|
||||||
},
|
|
||||||
"references": [
|
|
||||||
{ "path": "../common" }
|
|
||||||
],
|
|
||||||
"include": [
|
|
||||||
"**/*.ts"
|
|
||||||
]
|
|
||||||
}
|
|
@ -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,
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,23 +1,23 @@
|
|||||||
{
|
{
|
||||||
"files": [],
|
"include": [
|
||||||
"references": [
|
"src/**/*.ts"
|
||||||
{
|
],
|
||||||
"path": "./src/common"
|
"compilerOptions": {
|
||||||
},
|
"outDir": "gen",
|
||||||
{
|
"allowJs": false,
|
||||||
"path": "./src/machine"
|
"checkJs": false,
|
||||||
},
|
"sourceMap": true,
|
||||||
{
|
"target": "es5",
|
||||||
"path": "./src/platform"
|
"lib": [
|
||||||
},
|
"es2017",
|
||||||
{
|
"dom"
|
||||||
"path": "./src/ide"
|
],
|
||||||
},
|
"noImplicitThis": false,
|
||||||
{
|
"noImplicitAny": false,
|
||||||
"path": "./src/worker"
|
"preserveConstEnums": true,
|
||||||
},
|
"alwaysStrict": true,
|
||||||
{
|
"strictNullChecks": false,
|
||||||
"path": "./src/tools"
|
"experimentalDecorators": true,
|
||||||
|
"emitDecoratorMetadata": true,
|
||||||
}
|
}
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user