mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-22 00:13:45 -05:00
22 lines
583 B
JSON
22 lines
583 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,
|
|
"moduleResolution": "node16",
|
|
"module": "node16",
|
|
"outDir": "build"
|
|
},
|
|
"include": ["src/**/*.js", "types/global.d.ts"],
|
|
"exclude": ["node_modules", "build", "./app-plaid.js", "coverage"]
|
|
}
|