fediverse-auth/backend/tsconfig.json

16 lines
351 B
JSON
Raw Normal View History

2024-05-20 21:36:39 -07:00
{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "dist",
"inlineSourceMap": true,
"esModuleInterop": true,
"moduleResolution": "Node16",
"target": "ES2022",
"lib": ["ES2023"],
"module": "NodeNext",
"resolveJsonModule": true
},
"include": ["./src/**/*"]
}