Files
blackroad-operating-system/tsconfig.json
2025-11-21 13:59:49 -06:00

20 lines
460 B
JSON

{
"compilerOptions": {
"target": "ES2019",
"target": "ES2021",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"outDir": "dist",
"rootDir": "."
},
"include": ["scripts/**/*.ts", "tools/**/*.ts", "infra/**/*.json"]
"include": ["scripts/**/*.ts", "tools/**/*.ts", "infra/**/*.json"],
"ts-node": {
"esm": false
}
}