TypeScript 2.5 - 在tsconfig中强制键入函数。

时间:2017-10-20 14:51:16

标签: javascript typescript typescript2.0

如果我喜欢这样:

function add(x: number, y: number) {
    return x + y;
}

我想得到一个错误,我必须指定一个返回类型。这可以在tsconfig.json吗?

看起来应该没问题:

function add(x: number, y: number): number {
    return x + y;
}

我可以使用"noImplicitAny": true强制输入变量,但我找不到任何函数。

https://www.typescriptlang.org/docs/handbook/functions.html

https://www.typescriptlang.org/docs/handbook/tsconfig-json.html

http://json.schemastore.org/tsconfig

0 个答案:

没有答案