lsa-planer
LSA-Planer Professional – Planungssoftware für Lichtsignalanlagen nach RiLSA 2015 und § 45 StVO. EUPL-1.2.
/ tsconfig.electron.json
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "ES2022", |
| 4 | "lib": ["ES2022"], |
| 5 | "module": "CommonJS", |
| 6 | "moduleResolution": "Node", |
| 7 | "rootDir": ".", |
| 8 | "outDir": "build", |
| 9 | "sourceMap": false, |
| 10 | "skipLibCheck": true, |
| 11 | "esModuleInterop": true, |
| 12 | |
| 13 | "strict": true, |
| 14 | "noImplicitOverride": true, |
| 15 | "noUncheckedIndexedAccess": true, |
| 16 | "exactOptionalPropertyTypes": true, |
| 17 | "noFallthroughCasesInSwitch": true, |
| 18 | "noImplicitReturns": true, |
| 19 | "noUnusedLocals": true, |
| 20 | "noUnusedParameters": true, |
| 21 | "allowUnreachableCode": false, |
| 22 | "forceConsistentCasingInFileNames": true, |
| 23 | |
| 24 | "types": ["node"] |
| 25 | }, |
| 26 | "include": ["electron/**/*.ts", "shared/**/*.ts"], |
| 27 | "exclude": ["node_modules", "build", "release", "src", "tests"] |
| 28 | } |