ECMAScript icon indicating copy to clipboard operation
ECMAScript copied to clipboard

Update tsconfig.json

Open TheColorRed opened this issue 1 year ago • 0 comments

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';

TheColorRed avatar Nov 20 '23 16:11 TheColorRed