Skip to content

Commit

Permalink
update tsconfig tabulation
Browse files Browse the repository at this point in the history
  • Loading branch information
egermano committed Oct 22, 2024
1 parent f7ad4ac commit 1f42afb
Showing 1 changed file with 14 additions and 23 deletions.
37 changes: 14 additions & 23 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,15 @@
{
"compilerOptions": {
"outDir": "bin",
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"sourceMap": true,
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2015"
]
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules",
"src/**/*.spec.ts"
]
}
"compilerOptions": {
"outDir": "bin",
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"sourceMap": true,
"typeRoots": ["node_modules/@types"],
"lib": ["es2015"]
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "src/**/*.spec.ts"]
}

0 comments on commit 1f42afb

Please sign in to comment.