mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-20 22:28:08 -05:00
* Migrate `get-next-package-version.js` to TypeScript * Add release notes * Stronger type check * Fix step ordering * Fix typo * Fix missed ordering
17 lines
332 B
JSON
17 lines
332 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": [],
|
|
"module": "es2022",
|
|
"moduleResolution": "bundler",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"types": ["node"],
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"composite": true
|
|
},
|
|
"include": ["src/**/*", "bin/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|