konva/tsconfig.json

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