ECMAScript
ECMAScript copied to clipboard
Update tsconfig.json
This allows for not having to specify a path to the file:
import { /* ... */ } from './decorators';
import { /* ... */ } from '../decorators';
import { /* ... */ } from '../../../decorators';
All become this no matter where the file is located:
import { /* ... */ } from 'decorators';