forked from TheKonka/instagram-download-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 851 Bytes
/
Copy pathtsconfig.json
File metadata and controls
26 lines (26 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"compilerOptions": {
"strict": true,
"module": "preserve",
"noEmit": true,
"target": "ESNext",
"lib": ["es2022", "dom", "dom.iterable"],
"moduleResolution": "bundler",
// "sourceMap": true,
// "rootDir": "./src",
"jsx": "react-jsx",
"jsxImportSource": "preact",
"paths": {
"react": ["./node_modules/preact/compat"],
"react-dom": ["./node_modules/preact/compat"],
"react-dom/*": ["./node_modules/preact/compat/*"],
"react/jsx-runtime": ["./node_modules/preact/jsx-runtime"]
},
"noEmitOnError": true,
"allowJs": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"types": ["chrome-types", "firefox-webext-browser"]
},
"exclude": ["node_modules", "public", "dist", "./src/*.js", "*.js"]
}