konva/tsconfig.json

15 lines
295 B
JSON
Raw Normal View History

2019-01-02 04:59:27 +08:00
{
"compilerOptions": {
"outDir": "lib",
2020-08-22 01:09:58 +08:00
"module": "ES2015",
2021-04-30 22:24:27 +08:00
"target": "ES2015",
"noEmitOnError": true,
2021-04-30 22:24:27 +08:00
"lib": ["ES2015", "dom"],
"moduleResolution": "node",
2021-05-05 22:19:24 +08:00
"declaration": true,
2021-05-05 22:26:24 +08:00
// "noImplicitAny": true,
2021-05-05 22:19:24 +08:00
// "strict": true
2019-01-02 04:59:27 +08:00
},
2019-02-28 06:57:49 +08:00
"include": ["./src/*.ts"]
2019-01-02 04:59:27 +08:00
}