console-app/tsconfig.json

14 lines
265 B
JSON
Raw Permalink Normal View History

2020-05-05 11:56:36 +02:00
{
"compilerOptions": {
"target": "es5",
"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
}
}