konva/tsconfig.json
2024-10-04 15:26:45 +00:00

25 lines
622 B
JSON

{
"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"],
}