tsconfig: set rootDir to ensure output structure of tsc

This commit is contained in:
Patrik Oldsberg
2020-08-13 14:31:23 +02:00
parent 20d83e7d5b
commit af9d127644
2 changed files with 3 additions and 1 deletions
@@ -9,6 +9,7 @@
"exclude": ["node_modules"],
"compilerOptions": {
"outDir": "dist",
"rootDir": ".",
"skipLibCheck": true
}
}
+2 -1
View File
@@ -7,6 +7,7 @@
"plugins/*/migrations"
],
"compilerOptions": {
"outDir": "dist"
"outDir": "dist",
"rootDir": "."
}
}