mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
* Update oxlint and oxfmt versions, add suppressions for warnings * Add release notes for PR #6560 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
20 lines
534 B
JSON
20 lines
534 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
// Using ES2021 because that's the newest version where
|
|
// the latest Node 16.x release supports all of the features
|
|
"target": "ES2021",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node10",
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"declarationDir": "@types",
|
|
"paths": {
|
|
"loot-core/*": ["./@types/loot-core/src/*"]
|
|
}
|
|
},
|
|
"include": ["."],
|
|
"exclude": ["**/node_modules/*", "dist", "@types", "*.test.ts"]
|
|
}
|