Geequlim / ECMAScript

Javascript binding for godotengine
MIT License
959 stars 84 forks source link

Update tsconfig.json #182

Closed TheColorRed closed 7 months ago

TheColorRed commented 9 months ago

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