我在解决一个神秘的情况时遇到了一些问题
我有一个tsconfig文件:
{
"compilerOptions": {
"outDir": "./built",
"allowJs": true,
"target": "es5"
},
"include": [
"./app/**/*.ts"
]
}
当我使用下面的代码进行tsc时,这显然是错误的:
const credentials = Config.blahblah
import Config from '../../../config'
我知道这是错误的,因为Config在使用之前没有导入,但在之后。
如果我切换两行,则代码通过我的测试。但问题是,如果我保持上面的顺序(这应该给我一个错误),当我做
mocha --compilers ts:ts-node/register,tsx:ts-node/register app/**/index-test.ts
甚至
tsc
例如:
➜ GhostFaceRestful git:(exie/workon_typescript) ✗ mocha --compilers ts:ts-node/register,tsx:ts-node/register app/**/index-test.ts
➜ GhostFaceRestful git:(exie/workon_typescript) ✗
根本没有错误消息。这使得调试非常困难。我想知道我做错了什么?至少tsc应该告诉我在这种情况下有编译错误?
答案 0 :(得分:1)
因为它不是TypeScript错误,因为ES6(以及我认为,TypeScript)import
语句被提升。 (您可以通过运行tsc
来验证这一点 - 它也会报告没有错误。)
有趣的是,在编译时,require
来电不会被提升。所以这个:
const credentials = Config.blahblah
import Config from '../../../config'
成为这个:
"use strict";
var credentials = Config.blahblah;
var Config = require('../../../config');
你应该看到一个运行时错误:
TypeError: Cannot read property 'Config' of undefined
如果要验证ts-node
是否报告了TypeScript编译错误,请使用明显的TypeScript错误;像这样的东西:
const n: number = "not-a-number";