-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Closed
Labels
QuestionAn issue which isn't directly actionable in codeAn issue which isn't directly actionable in code
Description
I use import instead of <reference .. to import my d.ts files. But after I'd compiled this:
import 'tests/interfaces/mocha.d.ts';I've got:
"use strict";
require('tests/interfaces/mocha.d.ts');My config file:
{
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "classic",
"noImplicitAny": false,
"outDir": "dist",
"rootDir": ".",
"sourceMap": true,
"target": "es5"
}
}Can i change this behaviour by config?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
QuestionAn issue which isn't directly actionable in codeAn issue which isn't directly actionable in code