2
0
mirror of https://github.com/frappe/books.git synced 2024-09-19 19:19:02 +00:00

chore: include stuff in tsconfig

- remove redundant file
This commit is contained in:
18alantom 2022-01-24 13:01:05 +05:30
parent 7017608c68
commit 28171bc285
2 changed files with 9 additions and 20 deletions

View File

@ -1,19 +0,0 @@
import server from 'frappe/server';
import models from '../models';
import postStart from './postStart';
async function start() {
await server.start({
backend: 'sqlite',
connectionParams: { dbPath: 'test.db', enableCORS: true },
models,
});
await postStart();
}
start();
export default {
start,
};

View File

@ -30,8 +30,16 @@
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
"tests/**/*.tsx",
"frappe/**/*.ts",
"models/**/*.ts",
"patches/**/*.ts",
"reports/**/*.ts",
"accounting/**/*.ts",
"accounting/**/*.ts",
],
"exclude": [
"node_modules"