Files
konva/tsconfig.json

15 lines
295 B
JSON
Raw Normal View History

2019-01-01 15:59:27 -05:00
{
"compilerOptions": {
"outDir": "lib",
2020-08-21 12:09:58 -05:00
"module": "ES2015",
2021-04-30 09:24:27 -05:00
"target": "ES2015",
"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-05-05 09:26:24 -05:00
// "noImplicitAny": true,
2021-05-05 09:19:24 -05:00
// "strict": true
2019-01-01 15:59:27 -05:00
},
2019-02-27 17:57:49 -05:00
"include": ["./src/*.ts"]
2019-01-01 15:59:27 -05:00
}