Open lixiaoyanlee opened 7 years ago
@lixiaoyanlee Have the same problem.
Workaround: in file ..node_modules\@types\webix\index.d.ts change
icons?: boolean|object;
to
icons?: boolean|Object;
我已经改好了,改的是:package.json 文件,
"scripts": { "start": "tsc && concurrently \"tsc -w\" \"lite-server\" ", "lite": "lite-server", "tsc": "tsc", "tsc:w": "tsc -w" },改为:"scripts": { "start": "concurrently \"tsc -w\" \"lite-server\" ", "lite": "lite-server", "tsc": "tsc", "tsc:w": "tsc -w" }, 也不报错了 不知道是不是这个原因