-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (34 loc) · 962 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
{
"compilerOptions": {
"target": "es2018",
"rootDir": "src",
"outDir": "dist",
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"strict": false,
"noUnusedLocals": true,
"removeComments": true,
"declaration": true,
"sourceMap": true,
"inlineSources": true,
"typeRoots": [
"./types.ts",
"./node_modules/@types",
"@types/jest"
],
"types": ["jest"],
"stripInternal": true,
"noImplicitAny": false,
"preserveConstEnums": true,
"experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
"emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
},
"include": [
"src/**/*"
]
}