mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-14 10:34:06 +02:00
# Description of Changes Add prototypes folder to test new functionality in. This build of the app is spawnable with `npm run dev:prototypes`. Currently just contains a very developer-y chat interface to help us develop & explore the AI backend before we make the frontend for it for real.
24 lines
493 B
JSON
24 lines
493 B
JSON
{
|
|
"extends": "./tsconfig.proprietary.vite.json",
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@app/*": [
|
|
"src/prototypes/*",
|
|
"src/proprietary/*",
|
|
"src/core/*"
|
|
],
|
|
"@proprietary/*": ["src/proprietary/*"],
|
|
"@core/*": ["src/core/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"src/core/**/*.test.ts*",
|
|
"src/core/**/*.spec.ts*",
|
|
"src/proprietary/**/*.test.ts*",
|
|
"src/proprietary/**/*.spec.ts*",
|
|
"src/desktop",
|
|
"src/saas",
|
|
"node_modules"
|
|
]
|
|
}
|