mancala/tsconfig.json

13 lines
292 B
JSON
Raw 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,
2021-06-29 03:26:23 +03:00
"forceConsistentCasingInFileNames": true,
"sourceMap": true
2021-06-27 01:41:52 +03:00
}
}