Files

19 lines
446 B
JSON
Raw Permalink Normal View History

2026-05-29 17:33:12 +08:00
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"declaration": true,
"outDir": "./dist",
"rootDir": ".",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2022", "DOM"],
"types": ["node"]
},
"include": ["index.ts", "src/**/*.ts"],
"exclude": ["node_modules", "dist", "tests"]
}