Skip to content

Commit

Permalink
fix: tsconfig.json updated
Browse files Browse the repository at this point in the history
  • Loading branch information
raronpxcsw committed Dec 5, 2024
1 parent 0c64869 commit 92ff1ab
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 23 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions projects/aas-core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@
"compileOnSave": false,
"compilerOptions": {
"outDir": "./build",
"noImplicitAny": true,
"moduleResolution": "bundler",
"module": "ES2022",
"skipLibCheck": true,
"emitDecoratorMetadata": true,
"alwaysStrict": true,
"useUnknownInCatchVariables": false,
"moduleResolution": "bundler",
"module": "ES2022",
"lib": [
"ES2022"
]
Expand Down
6 changes: 2 additions & 4 deletions projects/aas-lib/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"declaration": false,
"importHelpers": true,
"moduleResolution": "bundler",
"module": "ES2022",
"declaration": false,
"importHelpers": true,
"lib": [
"ES2022",
"dom"
Expand Down
6 changes: 2 additions & 4 deletions projects/aas-portal/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"declaration": false,
"importHelpers": true,
"moduleResolution": "bundler",
"module": "ES2022",
"declaration": false,
"importHelpers": true,
"lib": [
"ES2022",
"dom"
Expand Down
7 changes: 3 additions & 4 deletions projects/aas-server/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
"compileOnSave": false,
"compilerOptions": {
"outDir": "./build",
"noImplicitAny": true,
"declaration": false,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"skipLibCheck": true,
"emitDecoratorMetadata": true,
"alwaysStrict": true,
"useUnknownInCatchVariables": false,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": [
"ES2022"
],
Expand Down
6 changes: 2 additions & 4 deletions projects/fhg-jest/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@
"compileOnSave": false,
"compilerOptions": {
"outDir": "./build",
"noImplicitAny": true,
"moduleResolution": "bundler",
"module": "ES2022",
"skipLibCheck": true,
"emitDecoratorMetadata": true,
"alwaysStrict": true,
"useUnknownInCatchVariables": false,
"moduleResolution": "bundler",
"module": "ES2022",
"lib": [
"ES2022"
]
Expand Down
8 changes: 7 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,22 @@
"compilerOptions": {
"baseUrl": "./",
"target": "ES2022",
"useDefineForClassFields": false,
"module": "NodeNext",
"moduleResolution": "nodenext",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"sourceMap": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"useDefineForClassFields": false,
"useUnknownInCatchVariables": false,
},
"ts-node": {
"esm": true
Expand Down

0 comments on commit 92ff1ab

Please sign in to comment.