mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-07 20:38:54 -05:00
15 lines
383 B
JSON
15 lines
383 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",
|
||
"noEmit": false,
|
||
"declaration": true,
|
||
"outDir": "build",
|
||
},
|
||
"include": ["."],
|
||
"exclude": ["**/node_modules/*", "build/**/*"]
|
||
}
|