Fix the build: make the rootDir correct

This commit is contained in:
David Baker 2021-07-01 17:18:26 +01:00
parent 44310712f3
commit 9cb171f953
2 changed files with 2 additions and 3 deletions

View file

@ -33,7 +33,7 @@
"docker:build": "scripts/in-docker.sh yarn run build",
"docker:install": "scripts/in-docker.sh yarn install",
"debrepo": "scripts/mkrepo.sh",
"clean": "rimraf webapp.asar dist packages deploys",
"clean": "rimraf webapp.asar dist packages deploys lib",
"hak": "node scripts/hak/index.js"
},
"dependencies": {

View file

@ -2,13 +2,13 @@
"compilerOptions": {
"resolveJsonModule": true,
"esModuleInterop": true,
"allowJs": true,
"module": "commonjs",
"moduleResolution": "node",
"target": "es2016",
"noImplicitAny": false,
"sourceMap": false,
"outDir": "./lib",
"rootDir": "./src",
"declaration": true,
"types": [
"node"
@ -19,7 +19,6 @@
]
},
"include": [
".eslintrc.js",
"./src/**/*.ts"
]
}