-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
48 lines (46 loc) · 1.19 KB
/
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
45
46
47
48
{
"compilerOptions": {
"declaration": true,
"declarationDir": "types",
"declarationMap": true,
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
},
"module": "ES2015",
"rootDir": "src",
"preserveConstEnums": false,
"sourceMap": true,
"downlevelIteration": false,
"isolatedModules": true,
"esModuleInterop": true,
"importHelpers": true,
"lib": [
"ES2015",
"DOM"
],
"target": "ES2015",
"noEmitOnError": true,
"moduleResolution": "node",
"removeComments": false,
"pretty": true,
"noImplicitReturns": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true,
"noUncheckedIndexedAccess": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false
},
"include": [
"src/index.ts"
],
"exclude": [
"**/node_modules/",
"**/.*",
"dist"
],
"$schema": "https://json.schemastore.org/tsconfig"
}