sakobo/tsconfig.json

16 lines
266 B
JSON
Raw Permalink Normal View History

2025-01-17 10:28:24 +01:00
{
"compilerOptions": {
"rootDir": "src/",
"outDir": "build/",
2025-03-23 14:33:06 +01:00
"esModuleInterop": true,
"resolveJsonModule": true
2025-01-17 10:28:24 +01:00
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules/",
"build/"
]
}