camera-event-broker/tsconfig.json
Erki Aas 8183adc15e
All checks were successful
continuous-integration/drone Build is passing
Initial commit
2022-12-12 22:56:14 +02:00

21 lines
417 B
JSON

{
"compilerOptions": {
"lib": [
"ESNext"
],
"module": "esnext",
"target": "esnext",
"moduleResolution": "nodenext",
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "preserve",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"types": [
"bun-types" // add Bun global
]
}
}