-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
31 lines (28 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
{
"compilerOptions": {
/* core */
"target": "ES2017",
"module": "ESNext",
"moduleResolution": "node",
"outDir": "./dist/lib",
/* strictness */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitReturns": true,
/* misc */
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"removeComments": true,
"sourceMap": true,
/* typings */
"typeRoots": ["node_modules/@jest", "node_modules/@types", "src/typings"]
},
"exclude": ["node_modules"]
}