-
Notifications
You must be signed in to change notification settings - Fork 378
/
tsconfig.json
29 lines (29 loc) · 930 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
{
"compilerOptions": {
"incremental": true,
"noImplicitOverride": true,
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
"lib": ["dom", "esnext", "webworker"],
"moduleResolution": "node",
"noEmit": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"strict": true,
"target": "es2020",
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"module": "esnext",
"isolatedModules": true,
"noImplicitReturns": false,
"noUnusedLocals": false,
"experimentalDecorators": true,
"useDefineForClassFields": true,
"types": ["node", "chrome", "jest", "web"],
"typeRoots": ["node_modules/@types", "./@types"]
},
"include": ["**/*.ts", "**/*.tsx", "apps/web-embed/index.js", "apps/web-embed/src/views/WebEmbedWebviewAgentCardano/index.tsx"],
"exclude": ["node_modules"],
"extends": "expo/tsconfig.base"
}