summaryrefslogtreecommitdiff
path: root/electron/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'electron/tsconfig.json')
-rw-r--r--electron/tsconfig.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/electron/tsconfig.json b/electron/tsconfig.json
new file mode 100644
index 00000000..a2a65ea5
--- /dev/null
+++ b/electron/tsconfig.json
@@ -0,0 +1,21 @@
+{
+ "compilerOptions": {
+ "target": "ESNext",
+ "module": "ESNext",
+ "strict": true,
+ "jsx": "preserve",
+ "importHelpers": true,
+ "moduleResolution": "node",
+ "esModuleInterop": true,
+ "allowSyntheticDefaultImports": true,
+ "sourceMap": true,
+ "baseUrl": ".",
+ "types": ["webpack-env"],
+ "paths": {
+ "@/*": ["src/*"]
+ },
+ "lib": ["ESNext", "DOM", "DOM.Iterable", "ScriptHost"]
+ },
+ "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"],
+ "exclude": ["node_modules", "dist"]
+}