Files
elixforms-web-pages/tsconfig.base.json
T
administrator 81ecc4d3f5 major refactor
- move common components to own folder
- add tsconfig for common reference and build
- update configuration files for global JSX support
- modify checkbox creation with specific required option
2026-06-11 14:18:19 +02:00

25 lines
565 B
JSON

{
//"files": [],
"references": [
{
"path": "./common"
}
],
"compilerOptions": {
"module": "ESNext",
"target": "ES2022",
"moduleResolution": "bundler",
"strict": true,
"jsx": "react-jsx",
"paths": {
"@common/*": [
"./common/*"
]
},
"isolatedModules": true,
"verbatimModuleSyntax": true,
"resolvePackageJsonExports": true,
"resolvePackageJsonImports": true
//
}
}