mancala/apps/backend/tsconfig.json

16 lines
301 B
JSON
Raw Permalink Normal View History

2021-06-27 01:41:52 +03:00
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true
},
"exclude": [
"tests",
]
}