inline-schema/tsconfig.json

21 lines
470 B
JSON
Raw Permalink Normal View History

2026-03-31 12:17:46 +08:00
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020"],
2026-03-31 13:55:11 +08:00
"moduleResolution": "bundler",
2026-03-31 13:02:29 +08:00
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
2026-03-31 12:17:46 +08:00
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"types": ["node"]
2026-03-31 12:17:46 +08:00
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
2026-03-31 12:17:46 +08:00
}