mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 03:57:13 -05:00
20 lines
460 B
JSON
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
|
|
}
|
|
}
|