Skip to content
Snippets Groups Projects
  • Simon Genin (ges)'s avatar
    396fec39
    [ADD] cli: add a command to generate tsconfig · 396fec39
    Simon Genin (ges) authored
    
    With the new native JS module system, we have a lot of new features for
    the developer: autocompletion, docstrings, ...
    
    However, it does not work across modules: if a JS file in
    /addons/stock/static/src/some_file.js want to import a file in web, say
    /addons/web/static/src/blabla.js, we will need to use a statement like
    this:
    
    import { something } from '@web/blabla';
    
    Obviously, there is no automatic way for IDEs to know that '@web' should
    map to 'addons/web'.
    
    This is why we propose to use a tsconfig.json that defines the mapping
    between modules and their paths.  This is not mandatory, and only
    affects those developers that work commonly in JS.
    
    Part of PR 63177
    
    Co-authored-by: default avatarFrancois (fge) <fge@odoo.com>
    396fec39
    History
    [ADD] cli: add a command to generate tsconfig
    Simon Genin (ges) authored
    
    With the new native JS module system, we have a lot of new features for
    the developer: autocompletion, docstrings, ...
    
    However, it does not work across modules: if a JS file in
    /addons/stock/static/src/some_file.js want to import a file in web, say
    /addons/web/static/src/blabla.js, we will need to use a statement like
    this:
    
    import { something } from '@web/blabla';
    
    Obviously, there is no automatic way for IDEs to know that '@web' should
    map to 'addons/web'.
    
    This is why we propose to use a tsconfig.json that defines the mapping
    between modules and their paths.  This is not mandatory, and only
    affects those developers that work commonly in JS.
    
    Part of PR 63177
    
    Co-authored-by: default avatarFrancois (fge) <fge@odoo.com>
.gitignore 660 B
# sphinx build directories
_build/

# dotfiles
.*
!.gitignore
!.github
!.mailmap
# compiled python files
*.py[co]
__pycache__/
# setup.py egg_info
*.egg-info
# emacs backup files
*~
# hg stuff
*.orig
status
# odoo filestore
odoo/filestore
# maintenance migration scripts
odoo/addons/base/maintenance

# generated for windows installer?
install/win32/*.bat
install/win32/meta.py

# needed only when building for win32
setup/win32/static/less/
setup/win32/static/wkhtmltopdf/
setup/win32/static/postgresql*.exe

# various virtualenv
/bin/
/build/
/dist/
/include/
/lib/
/man/
/share/
/src/

# avoid adding it after generation from tsconfig command
tsconfig.json