forked from juicycleff/nestjs-event-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
27 lines (24 loc) · 955 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
{
"compilerOptions": {
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"target": "es2017",
"outDir": "build/main",
"rootDir": "src",
"incremental": true,
"moduleResolution": "node",
"module": "commonjs",
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
/* Experimental Options */
// "experimentalDecorators": true /* Enables experimental support for ES7 decorators. */,
// "emitDecoratorMetadata": true /* Enables experimental support for emitting type metadata for decorators. */,
"lib": ["es2017"],
"types": ["node"],
"typeRoots": ["node_modules/@types", "src/types"]
},
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"],
"compileOnSave": false
}