- 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
17 lines
401 B
JSON
17 lines
401 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"module": "ESNext",
|
|
"target": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true,
|
|
},
|
|
"include": [
|
|
"**/*"
|
|
]
|
|
} |