forked from ccd0/4chan-x
-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.json
37 lines (37 loc) · 934 Bytes
/
tsconfig.json
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
27
28
29
30
31
32
33
34
35
36
37
{
"compilerOptions": {
"module": "ES2022",
"noImplicitAny": false,
"removeComments": false,
"sourceMap": true,
"target": "ES2020",
"allowJs": true,
"checkJs": true,
"noEmit": true,
"newLine": "lf",
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "hFragment",
"types": [
"@violentmonkey/types",
"@types/chrome"
],
"lib": [
"DOM",
"DOM.Iterable",
"ES2020"
],
// needs to be in the deepest dir used as target in the rollup build
// https://stackoverflow.com/q/40460790, https://github.com/rollup/plugins/issues/243
"outDir": "builds/test/crx/tsOutput",
"importHelpers": true,
"paths": {
"@fa/*": ["./node_modules/@fortawesome/free-regular-svg-icons/*"],
"@fas/*": ["./node_modules/@fortawesome/free-solid-svg-icons/*"],
},
"skipDefaultLibCheck": true,
},
"exclude": [
"builds/"
]
}