2024-05-14 09:00:05 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"target": "esnext",
|
|
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"composite": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"downlevelIteration": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"emitDecoratorMetadata": false,
|
|
|
|
|
"experimentalDecorators": true,
|
2024-06-07 03:51:33 +02:00
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"noUnusedLocals": true,
|
2024-07-23 00:02:39 +02:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/federation/*": ["./federation/*"],
|
|
|
|
|
"@/client/*": ["./client/*"]
|
|
|
|
|
}
|
2024-05-14 09:00:05 +02:00
|
|
|
},
|
|
|
|
|
"include": ["*.ts", "*.d.ts", "**/*.ts", "**/*.d.ts"]
|
|
|
|
|
}
|