Files
VsCode-Block-Scaffold/tsconfig.json
Keith Solomon d6df4c18a2 feature: First build
2026-01-26 08:24:46 -06:00

20 lines
315 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"lib": [
"ES2020"
],
"rootDir": "src",
"outDir": "out",
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"exclude": [
"node_modules",
".vscode-test"
]
}