Changed whole project structure (split client and server into separat projects)
This commit is contained in:
12
ReallifeGamemode.Client/Scripts/buildScripts.ps1
Normal file
12
ReallifeGamemode.Client/Scripts/buildScripts.ps1
Normal file
@@ -0,0 +1,12 @@
|
||||
$rootPath = "$PSScriptRoot\.."
|
||||
|
||||
$tsConfig = "$rootPath\tsconfig.json"
|
||||
|
||||
$outputPath = "$rootPath\js_output"
|
||||
|
||||
if(Test-Path $outputPath)
|
||||
{
|
||||
Remove-Item -Path $outputPath -Recurse -Force | Out-Null
|
||||
}
|
||||
|
||||
tsc -p $tsConfig
|
||||
Reference in New Issue
Block a user