Files
stellar/server/tsconfig.json

17 lines
386 B
JSON
Raw Normal View History

2026-03-22 23:33:24 -05:00
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"rootDir": "src",
"outDir": "dist",
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"types": ["node", "vitest/globals"]
},
"include": ["src"]
}