forked from Shopify/shopify-app-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
37 lines (37 loc) · 892 Bytes
/
tsconfig.base.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
{
"compileOnSave": false,
"compilerOptions": {
"composite": true,
"declaration": true,
"declarationMap": true,
"pretty": true,
"module": "Node16",
"moduleResolution": "Node16",
"target": "ES2022",
"downlevelIteration": true,
"esModuleInterop": true,
"sourceMap": true,
"noEmitOnError": false,
"experimentalDecorators": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"importHelpers": true,
"strictNullChecks": true,
"stripInternal": true,
"noImplicitAny": true,
"noImplicitThis": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"lib": [
"dom",
"dom.iterable",
"esnext.asynciterable",
"ES2021",
],
"types": ["@cloudflare/workers-types", "node", "jest"],
"baseUrl": ".",
"outDir": "./dist/ts",
"rootDir": "src"
}
}