From 7ed08f16bc5858fca69a2037bcb8a77792a10df0 Mon Sep 17 00:00:00 2001 From: Ondrej Ezr Date: Thu, 12 Oct 2023 11:17:33 +0200 Subject: [PATCH] build: add basic tsconfig.json The frontend config now requires a tsconfig for some reason. Probably update that got in too early. This is just really basic tscript.json from template, to appease the plugin. --- tsconfig.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..fe099467 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,30 @@ +{ + "compilerOptions": { + "jsx": "react", + "sourceMap": true, + "moduleResolution": "node", + "target": "es5", + "allowSyntheticDefaultImports": true, + "noErrorTruncation": true, + "strict": true, + "rootDir": ".", + "skipLibCheck": true, + "lib": [ + "dom", + "esnext" + ], + "module": "esnext", + "esModuleInterop": true, + "resolveJsonModule": true, + "isolatedModules": true + }, + "include": [ + "./src/**/*.ts", + "./src/**/*.tsx" + ], + "exclude": [ + "./src/entry.ts", + "./*.js", + "./*.d.ts" + ] +}