Skip to content

Commit

Permalink
fix(iot): add tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jrk94 authored and m-s- committed Feb 27, 2025
1 parent 1845d24 commit 6d8cec2
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"lib": [
"es2017",
"dom"
],
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": false,
"declaration": true,
"pretty": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
// strict rules:
"noImplicitAny": false,
"noImplicitThis": false,
"alwaysStrict": true,
"strictBindCallApply": false,
"strictNullChecks": false,
"strictFunctionTypes": false,
"strictPropertyInitialization": false
},
"exclude": [
"node_modules",
"templates"
]
}

0 comments on commit 6d8cec2

Please sign in to comment.