Skip to content
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.

Commit

Permalink
fix: remove ref to salesforce tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
cristiand391 committed Jun 14, 2022
1 parent dc69cf2 commit fc7a585
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions templates/sfdxPlugin/test/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "@salesforce/dev-config/tsconfig-test",
"include": ["./**/*.ts"],
"compilerOptions": {
"skipLibCheck": true
"skipLibCheck": true,
"noEmit": true
}
}
11 changes: 9 additions & 2 deletions templates/sfdxPlugin/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
{
"extends": "@salesforce/dev-config/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src"
"rootDir": "src",
"module": "commonjs",
"target": "es2020",
"lib": ["es2020"],
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"alwaysStrict": true,
"noUnusedLocals": true
},
"include": ["./src/**/*.ts"]
}

0 comments on commit fc7a585

Please sign in to comment.