konva/tsconfig.json
2024-05-15 13:45:07 -05:00

25 lines
622 B
JSON

{
"compilerOptions": {
"outDir": "lib",
"module": "CommonJS",
"target": "ES2018",
// "sourceMap": true,
"noEmitOnError": true,
"lib": ["ES2015", "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"],
}