Files

20 lines
511 B
JSON
Raw Permalink Normal View History

2026-05-09 17:58:44 +10:00
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"strict": true,
"noEmit": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"types": ["node"],
"verbatimModuleSyntax": true
},
"include": ["src/**/*.ts", "tests/**/*.ts", "*.config.ts"],
"exclude": ["dist", "node_modules"]
}