mirror of
https://github.com/stan-smith/FossFLOW.git
synced 2026-04-23 00:18:15 -04:00
- Combined FossFLOW app and fossflow-lib into single repository - Set up npm workspaces for managing both packages - fossflow-lib uses Webpack for library build - fossflow-app uses RSBuild for PWA application - Added shared TypeScript configuration - Simplified dependency management and development workflow
24 lines
652 B
JSON
24 lines
652 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"exclude": ["node_modules", "dist", "build"]
|
|
} |