mirror of https://github.com/Budibase/budibase.git
30 changed files with 1981 additions and 2475 deletions
@ -1,4 +1,4 @@ |
|||
// @ts-ignore
|
|||
import { run } from "../setup" |
|||
|
|||
run("../../server/src/index") |
|||
run("../../server/src/index") |
|||
|
|||
@ -1,3 +1,4 @@ |
|||
node_modules/ |
|||
.env |
|||
watchtower-hook.json |
|||
watchtower-hook.json |
|||
dist/ |
|||
@ -1,3 +1,6 @@ |
|||
{ |
|||
"watch": ["src", "../backend-core"] |
|||
} |
|||
"watch": ["src", "../backend-core"], |
|||
"ext": "js,ts,json", |
|||
"ignore": ["src/**/*.spec.ts", "src/**/*.spec.js"], |
|||
"exec": "ts-node src/index.ts" |
|||
} |
|||
|
|||
@ -0,0 +1,23 @@ |
|||
{ |
|||
"compilerOptions": { |
|||
"target": "es6", |
|||
"module": "commonjs", |
|||
"lib": ["es2019"], |
|||
"allowJs": true, |
|||
"outDir": "dist", |
|||
"strict": true, |
|||
"noImplicitAny": true, |
|||
"esModuleInterop": true, |
|||
"resolveJsonModule": true, |
|||
"incremental": true |
|||
}, |
|||
"include": [ |
|||
"./src/**/*" |
|||
], |
|||
"exclude": [ |
|||
"node_modules", |
|||
"**/*.json", |
|||
"**/*.spec.ts", |
|||
"**/*.spec.js" |
|||
] |
|||
} |
|||
File diff suppressed because it is too large
Loading…
Reference in new issue