Skip to content

Commit

Permalink
refactor: exclude dist folder
Browse files Browse the repository at this point in the history
prevent IDE indexing `dist`
  • Loading branch information
dimaslanjaka committed May 13, 2023
1 parent b7050e8 commit e448874
Showing 1 changed file with 13 additions and 18 deletions.
31 changes: 13 additions & 18 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"sourceMap": true,
"outDir": "dist",
"declaration": true,
"esModuleInterop": true,
"types": [
"node"
]
},
"include": [
"lib/front_matter.ts"
],
"exclude": [
"node_modules"
]
}
"compilerOptions": {
"module": "CommonJS",
"target": "ES6",
"sourceMap": true,
"outDir": "dist",
"declaration": true,
"esModuleInterop": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
},
"include": ["lib/front_matter.ts"],
"exclude": ["node_modules", "dist"]
}

0 comments on commit e448874

Please sign in to comment.