-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
40 lines (40 loc) · 802 Bytes
/
Copy pathtsconfig.json
File metadata and controls
40 lines (40 loc) · 802 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react",
"moduleResolution": "node",
"target": "ES2022",
"module": "ES2022",
"lib": [
"ES2021"
],
"jsxFactory": "ScriptableJSX.createElement",
"noEmit": true,
"noEmitOnError": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"pretty": true,
"sourceMap": false,
"strict": true,
"declaration": true,
"declarationDir": "dist",
"typeRoots": [
"node_modules/@types/scriptable-ios",
"./types"
],
"types": [
"@types/scriptable-ios",
"./types"
],
"resolveJsonModule": true
},
"exclude": [
"dist",
"node_modules"
],
"include": [
"src/**/*",
"types/**/*"
]
}