mirror of
https://github.com/stan-smith/FossFLOW.git
synced 2026-02-20 08:06:44 -05: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
16 lines
359 B
JSON
16 lines
359 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"emitDeclarationOnly": true,
|
|
"declaration": true,
|
|
"declarationMap": false,
|
|
"noEmit": false,
|
|
"outDir": "./dist"
|
|
},
|
|
"exclude": ["node_modules", "./dist", "./docs", "**/*.test.ts", "**/*.test.tsx"],
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/global.d.ts"
|
|
]
|
|
} |