console-app/tsconfig.json

14 lines
265 B
JSON
Raw Normal View History

2020-05-05 11:56:36 +02:00
{
"compilerOptions": {
2020-06-16 12:52:41 +02:00
"target": "es6",
2020-05-05 11:56:36 +02:00
"module": "commonjs",
2020-05-18 10:24:41 +02:00
"outDir": "./dist",
2020-05-09 19:51:43 +02:00
"rootDir": "./",
2020-05-18 10:24:41 +02:00
"strict": true,
2020-05-05 11:56:36 +02:00
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
2020-05-18 10:24:41 +02:00
"declaration": true,
"sourceMap": true
2020-05-05 11:56:36 +02:00
}
}