Skip to content

Commit

Permalink
regenerate tsconfig files and remove unneeded ts-node config
Browse files Browse the repository at this point in the history
  • Loading branch information
koddsson committed Nov 9, 2023
1 parent ebd1742 commit 808d7d2
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 18 deletions.
39 changes: 38 additions & 1 deletion packages/dev-server-polyfill/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,54 @@
{
"extends": "../../tsconfig.node-base.json",
"compilerOptions": {
"module": "ESNext",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src",
"composite": true,
"allowJs": true
},
"references": [
{
"path": "../parse5-utils/tsconfig.json"
},
{
"path": "../browser-logs/tsconfig.json"
},
{
"path": "../dev-server-core/tsconfig.json"
},
{
"path": "../test-runner-core/tsconfig.json"
},
{
"path": "../test-runner-coverage-v8/tsconfig.json"
},
{
"path": "../test-runner-mocha/tsconfig.json"
},
{
"path": "../test-runner-chrome/tsconfig.json"
},
{
"path": "../config-loader/tsconfig.json"
},
{
"path": "../dev-server-rollup/tsconfig.json"
},
{
"path": "../dev-server/tsconfig.json"
},
{
"path": "../polyfills-loader/tsconfig.json"
}
],
"include": [
"src",
"types"
],
"exclude": [
"src/browser",
"tests",
"dist"
]
}
3 changes: 0 additions & 3 deletions tsconfig.browser-base.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"ts-node": {
"experimentalResolver": true
},
"compilerOptions": {
/* Basic Options */
// "incremental": true, /* Enable incremental compilation */
Expand Down
21 changes: 10 additions & 11 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Don't edit this file directly. It is generated by generate-ts-configs script

{
"ts-node": {
"experimentalResolver": true
},
"extends": "./tsconfig.node-base.json",
"files": [],
"references": [
Expand Down Expand Up @@ -38,6 +37,9 @@
{
"path": "./packages/dev-server-rollup/tsconfig.json"
},
{
"path": "./packages/dev-server/tsconfig.json"
},
{
"path": "./packages/test-runner-playwright/tsconfig.json"
},
Expand All @@ -50,9 +52,6 @@
{
"path": "./packages/dev-server-legacy/tsconfig.json"
},
{
"path": "./packages/dev-server/tsconfig.json"
},
{
"path": "./packages/test-runner-commands/tsconfig.json"
},
Expand Down Expand Up @@ -80,6 +79,9 @@
{
"path": "./packages/dev-server-hmr/tsconfig.json"
},
{
"path": "./packages/dev-server-polyfill/tsconfig.json"
},
{
"path": "./packages/dev-server-import-maps/tsconfig.json"
},
Expand All @@ -106,9 +108,6 @@
},
{
"path": "./packages/dev-server-storybook/tsconfig.json"
},
{
"path": "./packages/dev-server-polyfill/tsconfig.json"
},
}
]
}
}
3 changes: 0 additions & 3 deletions tsconfig.new.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"ts-node": {
"experimentalResolver": true
},
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
Expand Down

0 comments on commit 808d7d2

Please sign in to comment.