Skip to content

Commit

Permalink
fix: update tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Scalamando committed Nov 12, 2021
1 parent c56c8ce commit e714500
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
{
"compilerOptions": {
"lib": ["es5", "es6", "dom"],
"target": "ES2018",
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"outDir": "./build",
"baseUrl": "./",
"strict": true
"baseUrl": "./"
},
"lib": ["es2015"],
"include": ["src/**/*"],
"exclude": ["src/public", "node_modules"]
"exclude": ["src/public"]
}

0 comments on commit e714500

Please sign in to comment.