We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be26417 commit 316892aCopy full SHA for 316892a
src/cli/acc.ts
@@ -1,5 +1,7 @@
1
import commander from "commander";
2
-import {version} from "../../package.json";
+// import {version} from "../../package.json";
3
+// work-around to avoid TS5505 error bug in TypeScript 3.1 https://github.com/Microsoft/TypeScript/issues/24715
4
+const {version} = require("../../package.json");
5
import {AtCoder} from "../atcoder";
6
import {OnlineJudge} from "../facade/oj";
7
import {init} from "../project";
0 commit comments