mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-28 18:40:34 -05:00
23 lines
605 B
JSON
23 lines
605 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
// DOM for URL global in Node 16+
|
|
"lib": ["ES2021"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "preserve",
|
|
// Check JS files too
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"moduleResolution": "node16",
|
|
"module": "node16",
|
|
"outDir": "build"
|
|
},
|
|
"include": ["src/**/*.js", "types/global.d.ts"],
|
|
"exclude": ["node_modules", "build", "./app-plaid.js", "coverage"],
|
|
}
|