Skip to content

Commit 645757b

Browse files
Merge pull request #556 from mcottontensor/backport/UE5.5/pr-547
[UE5.5] Merge pull request #547 from mcottontensor/tsconfig_fix
2 parents 813dcf1 + 58273ee commit 645757b

21 files changed

+15
-15
lines changed

Common/tsconfig.cjs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist/cjs",
55
"module": "commonjs"

Common/tsconfig.esm.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist/esm",
55
"module": "es6",
File renamed without changes.

Extras/JSStreamer/tsconfig.cjs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist/cjs",
55
"module": "commonjs",

Extras/JSStreamer/tsconfig.esm.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist/esm",
55
"module": "nodenext",

Frontend/implementations/typescript/tsconfig.cjs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist/cjs",
55
"module": "commonjs"

Frontend/implementations/typescript/tsconfig.esm.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist/esm",
55
"module": "es6",

Frontend/library/eslint.config.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default tseslint.config(
1212
languageOptions: {
1313
parser: tseslint.parser,
1414
parserOptions: {
15-
project: 'tsconfig.base.json',
15+
project: 'tsconfig.json',
1616
},
1717
},
1818
files: ["src/**/*.ts"],

Frontend/library/tsconfig.cjs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist/cjs",
55
"module": "commonjs"

Frontend/library/tsconfig.esm.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist/esm",
55
"module": "es6",

Frontend/library/tsconfig.jest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.json",
33
"include": ["./src/**/*.ts"],
44
"exclude": [],
55
"compilerOptions": {
File renamed without changes.

Frontend/ui-library/eslint.config.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default tseslint.config(
1212
languageOptions: {
1313
parser: tseslint.parser,
1414
parserOptions: {
15-
project: 'tsconfig.base.json',
15+
project: 'tsconfig.json',
1616
},
1717
},
1818
files: ["src/**/*.ts"],

Frontend/ui-library/tsconfig.cjs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist/cjs",
55
"module": "commonjs"

Frontend/ui-library/tsconfig.esm.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist/esm",
55
"module": "es6",

Signalling/tsconfig.cjs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist/cjs",
55
"module": "commonjs"

Signalling/tsconfig.esm.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./tsconfig.base.json",
2+
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist/esm",
55
"module": "es6",
File renamed without changes.

0 commit comments

Comments
 (0)