Skip to content

Commit

Permalink
feat: ts-config extends fastify-tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
alemagio committed Sep 26, 2020
1 parent 4f7802d commit 5acc652
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 18 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"fastify": "^3.2.1",
"fastify-tsconfig": "^1.0.0",
"standard": "^14.3.4",
"tap": "^14.10.8",
"ts-standard": "^9.0.0",
Expand Down
26 changes: 8 additions & 18 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,10 @@
{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "es6",
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"*": [
"node_modules/*"
]
}
},
"include": [
"**/*.ts"
]
"extends": "fastify-tsconfig",
"compilerOptions": {
"esModuleInterop": true,
"noEmit": true,
},
"include": [
"**/*.ts"
]
}

0 comments on commit 5acc652

Please sign in to comment.