Files
konva/tsconfig.json

15 lines
302 B
JSON
Raw Normal View History

2019-01-01 15:59:27 -05:00
{
"compilerOptions": {
"outDir": "lib",
2023-04-13 23:27:56 -05:00
"module": "CommonJS",
2021-04-30 09:24:27 -05:00
"target": "ES2015",
2022-01-04 12:11:15 -05:00
// "sourceMap": true,
"noEmitOnError": true,
2021-04-30 09:24:27 -05:00
"lib": ["ES2015", "dom"],
"moduleResolution": "node",
2021-05-05 09:19:24 -05:00
"declaration": true,
2021-09-23 16:43:38 -05:00
"removeComments": false
2019-01-01 15:59:27 -05:00
},
"include": ["./src/**/*.ts"]
2019-01-01 15:59:27 -05:00
}