Skip to content

Commit

Permalink
excludes vitest files from build
Browse files Browse the repository at this point in the history
  • Loading branch information
lcflight committed Feb 28, 2024
1 parent 52fe956 commit f6410e1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,17 @@
"declaration": true,
"outDir": "./dist",
"declarationDir": "./dist",
"rootDir": ".",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
},
"exclude": [
"dist",
"**/*.test.ts",
"**/*.spec.ts",
"vitest.config.ts",
"vitest.setup.ts"
]
}

0 comments on commit f6410e1

Please sign in to comment.