mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 03:23:51 -05:00
16 lines
393 B
JSON
16 lines
393 B
JSON
{
|
||
"extends": "../../tsconfig.base.json",
|
||
"compilerOptions": {
|
||
"composite": true,
|
||
// 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,
|
||
"strict": true,
|
||
"outDir": "dist"
|
||
}
|
||
}
|