godotjs / javascript

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

Update tsconfig.json #183

Closed TheColorRed closed 8 months ago

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