forked from karanlyons/murmurHash3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (32 loc) · 908 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
{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"allowImportingTsExtensions": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationMap": true,
"downlevelIteration": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": ["ES2015"],
"module": "ES2015",
"moduleResolution": "NodeNext",
"newLine": "LF",
"noEmitOnError": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"preserveConstEnums": true,
"removeComments": true,
"rootDir": ".",
"sourceMap": true,
"strict": true,
"target": "ES2015",
"useUnknownInCatchVariables": false
},
"include": ["src/**/*", "tests/**/*"],
"exclude": ["node_modules", "dist"]
}