-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
44 lines (44 loc) · 998 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
38
39
40
41
42
43
44
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"lib": [
"es2020",
"es2020.promise",
"es2020.bigint",
"es2020.string"
],
"module": "ESNext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outFile": "dist/tokenize.d.ts",
"skipLibCheck": false,
"sourceMap": true,
"strict": true,
"target": "ESNext",
"typeRoots": [
"node_modules/@types",
"src/types",
"src/types/global"
],
"types": [
"jest",
"node"
]
},
"files": [
"src/tokenize.ts"
]
}