forked from dbstratta/environment
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
35 lines (35 loc) · 860 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
{
"compilerOptions": {
"charset": "utf8",
"module": "commonjs",
"strict": true,
"target": "ESNext",
"noEmitOnError": true,
"removeComments": true,
"esModuleInterop": true,
"sourceMap": true,
"noErrorTruncation": true,
"declaration": true,
"declarationDir": "dist",
"declarationMap": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": false,
"skipLibCheck": true
},
"include": [
"src/**/*",
".eslintrc.js",
"babel.config.js",
"prettier.config.js",
"release.config.js",
"lint-staged.config.js",
"husky.config.js",
"jest.config.js",
"commitlint.config.js"
],
"exclude": ["node_modules", "dist"]
}