Typescript & JavaScript support
Import statements
// Various "import from" statements
import * from 'module';
import { Something } from 'module';
import {
Something,
SomethingElse,
AnotherThing
} from 'module';
import 'module';
// Various "import()" statements
const SomeModule = import('module')
// Various "require()" statements
const point = require('module')Supported project configurations
tsconfig.json
tsconfig.jsonpackage.json
package.jsonKnown problems β
Supported frameworks
React
SolidJS
VueJS
Last updated