- 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
18 lines
345 B
JSON
18 lines
345 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"references": [
|
|
{
|
|
"path": "../common"
|
|
}
|
|
],
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
//"jsx": "react-jsx"
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
} |