Files
matrix-backend/tsconfig.json
T
2025-09-09 14:12:09 +02:00

21 lines
380 B
JSON

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