This repository has been archived on 2023-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
tmp/tsconfig.json
2023-09-11 15:47:30 +03:00

14 lines
309 B
JSON

{
"exclude": ["__tests__"],
"compilerOptions": {
"module": "CommonJS",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"target": "es2022",
"moduleResolution": "node",
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"noImplicitAny": true,
}
}