reconcile/examples/website/tsconfig.json
2025-07-07 22:33:25 +01:00

17 lines
No EOL
335 B
JSON

{
"compilerOptions": {
"module": "ESNext",
"target": "ES2017",
"strict": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"moduleResolution": "bundler",
"outDir": "./dist",
"rootDir": ".",
"skipLibCheck": true,
"inlineSourceMap": true
},
"exclude": [
"./dist"
]
}