-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtsconfig.json
102 lines (96 loc) · 2.49 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"compilerOptions": {
"module": "commonjs",
// "declaration": true,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"strictNullChecks": false,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
// "noUnusedLocals": true,
// "noUnusedParameters": true,
"target": "es2019",
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"baseUrl": "./",
"lib": ["es2019"]
// "typeRoots": ["./node_modules/@types", "./src/types"]
// "types": ["./node_modules/@nestjs/graphql", "./node_modules/node"]
// "lib": ["ESNext", "DOM"]
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}
// {
// "compilerOptions": {
// "allowSyntheticDefaultImports": true,
// "emitDecoratorMetadata": true,
// "experimentalDecorators": true,
// "module": "commonjs",
// "lib": ["ESNext", "DOM"],
// "declaration": true,
// "outDir": "dist",
// "rootDir": "./",
// "strict": false,
// "strictNullChecks": false,
// "sourceMap": true,
// "moduleResolution": "node",
// "pretty": true,
// "skipLibCheck": true,
// "target": "ES2019",
// "esModuleInterop": true
// },
// "include": ["src/**/*", "types/**/*"],
// "exclude": [
// "node_modules",
// "dist"
// ]
// }
// {
// "compilerOptions": {
// "module": "commonjs",
// // "declaration": true,
// "removeComments": true,
// "emitDecoratorMetadata": true,
// "experimentalDecorators": true,
// "allowSyntheticDefaultImports": true,
// // "target": "es2017",
// "sourceMap": true,
// "outDir": "./dist",
// "baseUrl": "./",
// "skipLibCheck": true,
// "esModuleInterop": true,
// "allowJs": true,
// "preserveConstEnums": true,
// // "strictNullChecks": true,
// "target": "es2017",
// // "outDir": ".build",
// "moduleResolution": "node",
// "lib": ["es2015"],
// "rootDir": "./"
// },
// }
// {
// "compilerOptions": {
// "module": "commonjs",
// // "declaration": true,
// "noImplicitAny": false,
// "removeComments": true,
// "noLib": false,
// "allowSyntheticDefaultImports": true,
// "emitDecoratorMetadata": true,
// "experimentalDecorators": true,
// "target": "es2017",
// "sourceMap": true,
// "outDir": "./dist",
// "baseUrl": "./",
// "lib": ["es2018"]
// },
// "exclude": ["node_modules"]
// }