konva/tsconfig.json

25 lines
622 B
JSON
Raw Permalink Normal View History

2019-01-02 04:59:27 +08:00
{
"compilerOptions": {
"outDir": "lib",
2023-04-14 12:27:56 +08:00
"module": "CommonJS",
2023-08-28 22:23:57 +08:00
"target": "ES2018",
2022-01-05 01:11:15 +08:00
// "sourceMap": true,
"noEmitOnError": true,
2024-10-04 23:26:45 +08:00
"lib": ["ES2019", "dom"],
2021-04-30 22:24:27 +08:00
"moduleResolution": "node",
2021-05-05 22:19:24 +08:00
"declaration": true,
2023-08-27 09:36:40 +08:00
"removeComments": false,
2023-09-10 05:39:57 +08:00
"strict": true,
"noImplicitAny": false,
"noImplicitThis": false,
"useUnknownInCatchVariables": false,
2024-05-16 02:45:07 +08:00
"skipLibCheck": true,
2023-09-10 05:39:57 +08:00
// probably we would never enable this one
// because it's too strict, konva generates many functions on the runtime
"strictPropertyInitialization": false,
2024-05-16 02:45:07 +08:00
2019-01-02 04:59:27 +08:00
},
2024-05-16 02:45:07 +08:00
"include": ["./src/**/*.ts"],
2019-01-02 04:59:27 +08:00
}