Salsa IntelliSense does not work when using ES6 style import statments. I've tried tweaking some tsconfig.json settings, but without much luck.
This does not work:
import React, { AppRegistry } from 'react-native';
But this does:
var React = require('react-native'); var { AppRegistry } = React;
This is a known TypeScript issue:
microsoft/TypeScript#7000
Salsa IntelliSense does not work when using ES6 style import statments. I've tried tweaking some tsconfig.json settings, but without much luck.
This does not work:
import React, { AppRegistry } from 'react-native';But this does:
var React = require('react-native'); var { AppRegistry } = React;This is a known TypeScript issue:
microsoft/TypeScript#7000