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
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
{
|
||||
//"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
|
||||
//
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user