marko/tsconfig.json
2023-07-24 11:55:08 -04:00

30 lines
768 B
JSON

{
"compilerOptions": {
"lib": ["dom", "ESNext"],
"strict": 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
}
}