ignore node_modules in ts

This commit is contained in:
Anton Lavrenov 2024-05-15 13:45:07 -05:00
parent 6d34326084
commit 70f57d2a95

View File

@ -14,9 +14,11 @@
"noImplicitAny": false, "noImplicitAny": false,
"noImplicitThis": false, "noImplicitThis": false,
"useUnknownInCatchVariables": false, "useUnknownInCatchVariables": false,
"skipLibCheck": true,
// probably we would never enable this one // probably we would never enable this one
// because it's too strict, konva generates many functions on the runtime // because it's too strict, konva generates many functions on the runtime
"strictPropertyInitialization": false, "strictPropertyInitialization": false,
}, },
"include": ["./src/**/*.ts"] "include": ["./src/**/*.ts"],
} }