forked from algolia/algoliasearch-client-javascript
-
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) · 688 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 688 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": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"declaration": true,
"esModuleInterop": true,
"exactOptionalPropertyTypes": true,
"lib": ["dom", "esnext", "dom.iterable", "scripthost"],
"module": "esnext",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitThis": true,
"noLib": false,
"noUnusedLocals": true,
"outDir": "dist",
"removeComments": false,
"sourceMap": true,
"strict": true,
"target": "esnext",
"types": ["node"],
"verbatimModuleSyntax": true
},
"include": ["packages/**/*.ts"],
"exclude": ["dist", "node_modules"]
}