Skip to content

Commit

Permalink
add tsconfig for API scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
eike-hass committed May 13, 2024
1 parent 8052c8d commit f8242bb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions tooling/API/scripting/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"rootDir": "./",
"outDir": "./dist",
"target": "es2019",
"lib": [
"es2019"
],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"module": "commonjs",
"esModuleInterop": true,
"moduleResolution": "node",
"strict": true,
"declaration": true,
"sourceMap": true
},
"include": ["./", "./node_modules/**/*"],
}

0 comments on commit f8242bb

Please sign in to comment.