Files
govoplan-core/webui/tsconfig.module-tests.json
Albrecht Degering 635d25c74c
Some checks failed
Dependency Audit / dependency-audit (push) Has been cancelled
Module Matrix / module-matrix (push) Has been cancelled
chore: consolidate platform split checks
2026-07-10 12:51:19 +02:00

25 lines
600 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020", "DOM"],
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"module": "CommonJS",
"moduleResolution": "Node",
"noEmit": false,
"outDir": ".module-test-build",
"rootDir": ".",
"jsx": "react-jsx"
},
"include": [
"tests/module-capabilities.test.ts",
"tests/privacy-policy.test.ts",
"src/platform/moduleLogic.ts",
"src/features/privacy/policyLogic.ts",
"src/types.ts"
]
}