From 6549313a54e7fede18cfa170df82c29f511d76d7 Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Sat, 12 Aug 2023 09:39:41 +0100 Subject: No more API build step --- api/tsconfig.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 api/tsconfig.json (limited to 'api/tsconfig.json') diff --git a/api/tsconfig.json b/api/tsconfig.json new file mode 100644 index 0000000..84d8095 --- /dev/null +++ b/api/tsconfig.json @@ -0,0 +1,15 @@ +{ + "strict": true, + "compilerOptions": { + "target": "ES5", + "module": "CommonJS", + "sourceMap": true, + "moduleResolution": "node", + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "../api", + "lib": ["ESNext", "DOM"] + }, + "include": ["."], + "exclude": ["./node_modules"] +} -- cgit v1.2.3