inline-schema/tsconfig.json

20 lines
465 B
JSON
Raw 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",
2026-03-31 14:50:17 +08:00
"rootDir": "./src"
2026-03-31 12:17:46 +08:00
},
"include": ["src/**/*"],
2026-03-31 13:02:29 +08:00
"exclude": ["node_modules", "dist", "src/csv-loader"]
2026-03-31 12:17:46 +08:00
}