1
0
Fork 0
mirror of https://github.com/Findus23/MatomoLiteTracker.git synced 2024-09-18 14:53:45 +02:00
MatomoLiteTracker/tsconfig.json
2022-04-25 20:36:48 +02:00

23 lines
649 B
JSON

{
"compilerOptions": {
"moduleResolution": "Node",
"target": "ES2017",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"importsNotUsedAsValues": "error",
"module": "ES2020",
"outDir": "dist/"
}
}