Files
matrix-backend/tsconfig.json
T
2025-09-24 06:10:52 +02:00

18 lines
391 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"outDir": "./dist",
"rootDir": "./src",
"typeRoots": [
"./node_modules/@types",
"./types"
]
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "tests"]
}