fluxer/fluxer_app/tsconfig.json
2026-01-01 21:05:54 +00:00

38 lines
980 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2023",
"module": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ES2023"],
"jsx": "react-jsx",
"noEmit": true,
"sourceMap": true,
"moduleResolution": "Bundler",
"moduleDetection": "force",
"resolveJsonModule": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"useDefineForClassFields": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"downlevelIteration": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"],
"@pkgs/*": ["./pkgs/*"]
}
},
"include": ["./src/**/*"],
"exclude": ["node_modules", "dist", "coverage"]
}