konva/tsconfig.json
2023-09-09 16:39:57 -05:00

23 lines
590 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,
// probably we would never enable this one
// because it's too strict, konva generates many functions on the runtime
"strictPropertyInitialization": false,
},
"include": ["./src/**/*.ts"]
}