Files
konva/tsconfig.json

15 lines
301 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",
"target": "ES5",
"noEmitOnError": true,
"lib": ["es2015", "dom"]
2019-04-03 18:08:16 -05:00
// "noImplicitAny": true
2019-05-11 07:56:55 -05:00
// "strict": true
2019-05-09 08:28:09 -05:00
// "strictFunctionTypes": true
2019-01-01 15:59:27 -05:00
},
2019-02-27 17:57:49 -05:00
"include": ["./src/*.ts"]
2019-04-08 12:17:26 -05:00
// "include": ["./types/*.ts"]
2019-01-01 15:59:27 -05:00
}