forked from tinovyatkin/pass-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 879 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
{
// See https://go.microsoft.com/fwlink/?LinkId=759670
// for the documentation about the jsconfig.json format
"compilerOptions": {
// Keep allowJs here to allow use this config with tsc command line
"target": "esnext",
"lib": ["esnext", "dom"],
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"strict": true,
// "noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"suppressImplicitAnyIndexErrors": true,
/* Module Resolution Options */
"moduleResolution": "node",
"module": "commonjs",
"pretty": true,
"declaration": true,
"importHelpers": true,
"listEmittedFiles": true,
"outDir": "./dist",
"sourceMap": true
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "@types"]
}