Skip to content

Commit

Permalink
ignore node_modules in ts
Browse files Browse the repository at this point in the history
  • Loading branch information
lavrton committed May 15, 2024
1 parent 6d34326 commit 70f57d2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@
"noImplicitAny": false,
"noImplicitThis": false,
"useUnknownInCatchVariables": false,
"skipLibCheck": true,
// probably we would never enable this one
// because it's too strict, konva generates many functions on the runtime
"strictPropertyInitialization": false,

},
"include": ["./src/**/*.ts"]
"include": ["./src/**/*.ts"],
}

0 comments on commit 70f57d2

Please sign in to comment.