Skip to content

Commit 8cf8b14

Browse files
Merge pull request #547 from mcottontensor/tsconfig_fix
Renaming tsconfig.base,json to tsconfig.json
2 parents 3177bd6 + e3f821c commit 8cf8b14

21 files changed

+15
-15
lines changed

Common/tsconfig.cjs.json

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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",

Extras/JSStreamer/tsconfig.cjs.json

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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.

Frontend/library/eslint.config.mjs

Lines changed: 1 addition & 1 deletion
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"],

0 commit comments

Comments
 (0)