konva/tsconfig.json

15 lines
302 B
JSON
Raw Normal View History

2019-01-02 04:59:27 +08:00
{
"compilerOptions": {
"outDir": "lib",
2023-04-14 12:27:56 +08:00
"module": "CommonJS",
2021-04-30 22:24:27 +08:00
"target": "ES2015",
2022-01-05 01:11:15 +08:00
// "sourceMap": true,
"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-09-24 05:43:38 +08:00
"removeComments": false
2019-01-02 04:59:27 +08:00
},
"include": ["./src/**/*.ts"]
2019-01-02 04:59:27 +08:00
}