Files
mediabunny/tsconfig.json
T
2024-12-01 17:33:54 +01:00

19 lines
367 B
JSON

{
"compilerOptions": {
"target": "ES2021",
"strict": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": true,
"rootDir": "src",
"outDir": "build",
"declaration": true,
"stripInternal": true,
"skipLibCheck": true,
"allowJs": true
},
"include": [
"src/**/*"
]
}