marko/tsconfig.json
dpiercey dc2520ae21 chore: upgrade all deps
chore: refactor package json scripts
chore: rename scripts used for ci with @ci prefix
2024-03-05 10:31:32 -07:00

31 lines
789 B
JSON

{
"compilerOptions": {
"lib": ["dom", "ESNext"],
"strict": true,
"allowJs": true,
"outDir": "dist",
"composite": true,
"target": "ESNext",
"sourceMap": false,
"declaration": true,
"incremental": true,
"module": "ESNext",
"skipLibCheck": true,
"stripInternal": true,
"noUnusedLocals": true,
"isolatedModules": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noUnusedParameters": true,
"allowUnusedLabels": false,
"noImplicitReturns": false,
"noImplicitOverride": true,
"emitDeclarationOnly": true,
"verbatimModuleSyntax": true,
"moduleResolution": "bundler",
"allowUnreachableCode": false,
"allowImportingTsExtensions": true,
"forceConsistentCasingInFileNames": true
}
}