2022-04-30 10:21:21 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2022",
|
|
|
|
// DOM for URL global in Node 16+
|
|
|
|
"lib": ["ES2021", "DOM"],
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-05-05 20:26:16 +00:00
|
|
|
"esModuleInterop": true,
|
2022-04-30 10:21:21 +00:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
// Check JS files too
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
2022-05-05 20:26:16 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"module": "commonjs",
|
|
|
|
"outDir": "build"
|
2022-04-30 10:21:21 +00:00
|
|
|
},
|
2022-05-04 22:49:29 +00:00
|
|
|
"exclude": ["node_modules", "build", "./app-plaid.js"]
|
2022-04-30 10:21:21 +00:00
|
|
|
}
|