remark-agda/tsconfig.json

32 lines
725 B
JSON
Raw Normal View History

2024-09-12 23:38:07 +00:00
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
2024-09-13 00:43:27 +00:00
"emitDeclarationOnly": true,
2024-09-12 23:38:07 +00:00
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
2024-09-13 00:43:27 +00:00
"noPropertyAccessFromIndexSignature": false,
"outDir": "dist",
"declaration": true
},
"files": ["src/index.ts"]
2024-09-12 23:38:07 +00:00
}