Skip to content

Commit

Permalink
modify tsconfig to fix 'URL' not found
Browse files Browse the repository at this point in the history
  • Loading branch information
MABatin committed Sep 14, 2024
1 parent 563440e commit c9a9225
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 3 deletions.
2 changes: 1 addition & 1 deletion infrastructure/functions/dataSourceMonitor/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"target": "ES2018",
"module": "commonjs",
"lib": [
"es2018"
"esnext", "dom"
],
"declaration": true,
"strict": true,
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"target": "ES2018",
"module": "commonjs",
"lib": [
"es2018"
"esnext", "dom"
],
"declaration": true,
"strict": true,
Expand Down
29 changes: 29 additions & 0 deletions model_deploy/customResources/pipelineModel/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"compilerOptions": {
"target": "ES2018",
"module": "commonjs",
"lib": [
"esnext", "dom"
],
"declaration": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": false,
"inlineSourceMap": true,
"inlineSources": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"types": ["node"],
"outDir": "dist"
},
"exclude": [
"node_modules",
"dist"
]
}
2 changes: 1 addition & 1 deletion model_deploy/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"target": "ES2018",
"module": "commonjs",
"lib": [
"es2018"
"esnext", "dom"
],
"declaration": true,
"strict": true,
Expand Down

0 comments on commit c9a9225

Please sign in to comment.