Files
matrix-backend/tsconfig.json
T
2025-09-09 05:49:30 +02:00

22 lines
421 B
JSON

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