Make it possible to share types in /types directory between front and backend (#3211)

* Make it possible to share types in /types directory between front and backend

* Add new tsconfig files to gh-dist-files
This commit is contained in:
Mats Larsen
2021-12-28 15:53:34 +01:00
committed by GitHub
parent 7e294e7473
commit da1a3ab7dc
9 changed files with 48 additions and 95 deletions

13
tsconfig.base.json Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
/* Code generation */
"sourceMap": true,
"downlevelIteration": true,
"importHelpers": true,
/* Module resolution */
"esModuleInterop": true,
/* Other options */
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
}
}