mirror of
https://github.com/konvajs/konva.git
synced 2025-04-04 09:58:45 +08:00
25 lines
622 B
JSON
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"],
|
|
}
|