This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
Lateinicus/backend/tsconfig.json

15 lines
277 B
JSON
Raw Normal View History

2018-09-20 15:38:12 +00:00
{
"compilerOptions": {
"target": "ESnext",
2018-09-23 20:17:35 +00:00
"lib": ["ES2015"],
2018-09-20 15:38:12 +00:00
"module": "CommonJS",
"noImplicitAny": true,
"removeComments": true,
"sourceMap": true,
"outDir": "./dist/",
2018-09-29 13:06:14 +00:00
"baseUrl": "./src/"
2018-09-20 15:38:12 +00:00
}
}