-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
43 lines (40 loc) · 1.74 KB
/
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
36
37
38
39
40
41
42
43
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Recommended",
"compilerOptions": {
"target": "es2020",
"moduleResolution": "node",
"strict": true,
"alwaysStrict": true,
"esModuleInterop": true,
"skipLibCheck": false,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"declaration": true, /* Generates corresponding '.d.ts' file. */
"declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
"sourceMap": true, /* Generates corresponding '.map' file. */
"outDir": "./lib", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"noUnusedLocals": true, /* Report errors on unused locals. */
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
"emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
"paths": {
"@safelytyped/core-types": [ "./src/index" ]
},
"baseUrl": "."
},
"include": [
"src"
],
"exclude": [
// "**/*.spec.ts",
// "src/spec/**"
],
"ts-node": {
"esm": true,
"require": ["tsconfig-paths/register"],
"transpileOnly": true,
}
}