mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
* Move migrations script to typescript * Add release notes * Setup * Fix * PR feedback * Make imports work as expected * Rabbit
16 lines
312 B
JSON
16 lines
312 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": [],
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"types": ["node"],
|
|
"outDir": "dist",
|
|
"rootDir": "."
|
|
},
|
|
"include": ["src/**/*", "bin/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|