mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 10:39:17 -05:00
* Move more .d.ts files to .ts * Add release notes * Some errors with templates snuck in * Fix API build * CodeRabbit feedback * Move budget templates to new directory * Fix type errors in library module
18 lines
345 B
JSON
18 lines
345 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"allowJs": false,
|
|
"noEmit": false
|
|
},
|
|
"include": ["./typings", "./src/server/*"],
|
|
"exclude": [
|
|
"**/node_modules/*",
|
|
"**/build/*",
|
|
"**/lib-dist/*",
|
|
"./src/server/bench.ts"
|
|
]
|
|
}
|