Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't import TypeScript modules without providing the file extension

I am very new to TypeScript and I expect I should be able to import my TS files without needing to specify that they are TS files.

I have to do

import {sealed} from "./decorators/decorators.ts";

instead of what i want think is the right way which is

import {sealed} from "./decorators/decorators";

which results in errors indicating that it is only looking for files ending .js or .jsx

my tsconfig.json looks like this

{
"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"
]

}

like image 877
Steve Silvestri Avatar asked Apr 08 '16 22:04

Steve Silvestri


2 Answers

If you are using webpack try adding this to your webpack.config.js file:

resolve: {
  extensions: ['', '.js', '.jsx', '.ts', '.tsx']
},
like image 133
thitemple Avatar answered Nov 16 '22 14:11

thitemple


Answer from thitemple worked for me, but I had to remove '' from the array because it stopped webpack from starting.

resolve: {
  extensions: ['.js', '.jsx', '.ts', '.tsx']
},
like image 6
Martin Stuessy Avatar answered Nov 16 '22 16:11

Martin Stuessy