我对 TypeScript 很陌生,我希望我应该能够导入我的 TS 文件,而无需指定它们是 TS 文件。
我要做
import {sealed} from "./decorators/decorators.ts";
而不是我想要的正确方法是
import {sealed} from "./decorators/decorators";
这会导致错误表明它仅在寻找以 .js 或 .jsx 结尾的文件
我的 tsconfig.json 看起来像这样
{
"compileOnSave": true,
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"jsx": "react",
"allowJs": true,
"target": "es6",
"removeComments": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"exclude": [
"node_modules",
"typings/browser",
"typings/browser.d.ts"
]
}