godotjs / javascript

Javascript binding for godotengine
https://godotjs.github.io/
MIT License
980 stars 82 forks source link

Update tsconfig.json #182

Closed TheColorRed closed 9 months ago

TheColorRed commented 11 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';