aboutsummaryrefslogtreecommitdiff
path: root/extension/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'extension/tsconfig.json')
-rw-r--r--extension/tsconfig.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/extension/tsconfig.json b/extension/tsconfig.json
new file mode 100644
index 0000000..f82888f
--- /dev/null
+++ b/extension/tsconfig.json
@@ -0,0 +1,25 @@
+{
+ "compilerOptions": {
+ "target": "ES2020",
+ "useDefineForClassFields": true,
+ "module": "ESNext",
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
+ "skipLibCheck": true,
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "preserve",
+
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noFallthroughCasesInSwitch": true
+ },
+ "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
+ "references": [{ "path": "./tsconfig.node.json" }]
+}