mirror of
https://github.com/stan-smith/FossFLOW.git
synced 2026-04-23 08:31:16 -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
18 lines
350 B
JSON
18 lines
350 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"src/*": ["./*"]
|
|
},
|
|
"outDir": "./dist",
|
|
"declaration": false,
|
|
"declarationMap": false
|
|
},
|
|
"exclude": ["node_modules", "./dist", "./docs"],
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/global.d.ts"
|
|
]
|
|
} |