-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
53 lines (53 loc) · 1.45 KB
/
Copy pathtsconfig.json
File metadata and controls
53 lines (53 loc) · 1.45 KB
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
44
45
46
47
48
49
50
51
52
53
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist",
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": true,
"strict": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"allowImportingTsExtensions": false,
"declarationMap": true,
"esModuleInterop": true,
"importHelpers": true,
"resolveJsonModule": true,
"paths": {
"@src/*": ["src/*"],
"@abstract/*": ["src/abstract/*"],
"@constant/*": ["src/constant/*"],
"@decorator/*": ["src/decorator/*"],
"@exception/*": ["src/exception/*"],
"@filter/*": ["src/filter/*"],
"@guard/*": ["src/guard/*"],
"@interceptor/*": ["src/interceptor/*"],
"@interface/*": ["src/interface/*"],
"@module/*": ["src/module/*"],
"@package/*": ["src/package/*"],
"@pipe/*": ["src/pipe/*"],
"@provider/*": ["src/provider/*"],
"@strategy/*": ["src/strategy/*"]
}
},
"include": [
"src/**/*",
"test/**/*",
],
"ts-node": {
"experimentalSpecifierResolution": "node",
"transpileOnly": true,
"esm": true
},
"exclude": ["node_modules"]
}