2023-08-29 22:50:07 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "ESNext",
|
|
|
|
"target": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"allowUmdGlobalAccess": true,
|
2023-08-30 21:26:28 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true
|
2023-08-29 22:50:07 +02:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"**/node_modules/*"
|
|
|
|
]
|
|
|
|
}
|