{ "compilerOptions": { "outDir": "lib", "module": "CommonJS", "target": "ES2018", // "sourceMap": true, "noEmitOnError": true, "lib": ["ES2019", "dom"], "moduleResolution": "node", "declaration": true, "removeComments": false, "strict": true, "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"], }