Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
560 B
Python
26 lines
560 B
Python
{
|
|
'defines': [ 'NAPI_CPP_EXCEPTIONS' ],
|
|
'cflags!': [ '-fno-exceptions' ],
|
|
'cflags_cc!': [ '-fno-exceptions' ],
|
|
'conditions': [
|
|
["OS=='win'", {
|
|
"defines": [
|
|
"_HAS_EXCEPTIONS=1"
|
|
],
|
|
"msvs_settings": {
|
|
"VCCLCompilerTool": {
|
|
"ExceptionHandling": 1,
|
|
'EnablePREfast': 'true',
|
|
},
|
|
},
|
|
}],
|
|
["OS=='mac'", {
|
|
'xcode_settings': {
|
|
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
|
|
'CLANG_CXX_LIBRARY': 'libc++',
|
|
'MACOSX_DEPLOYMENT_TARGET': '10.7',
|
|
},
|
|
}],
|
|
],
|
|
}
|