Skip to content

Commit

Permalink
exclude test files from build
Browse files Browse the repository at this point in the history
  • Loading branch information
trusz committed Dec 5, 2024
1 parent a1bd87d commit 66218b8
Showing 1 changed file with 32 additions and 27 deletions.
59 changes: 32 additions & 27 deletions packages/core/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,34 @@
{
"compilerOptions": {
"target": "es2018",
"module": "esnext",
"moduleResolution": "node",
"noEmitOnError": true,
"lib": [
"es2018",
"dom"
],
"strict": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"declaration": true,
"importHelpers": true,
"outDir": "dist",
"sourceMap": true,
"inlineSources": true,
"rootDir": "./",
"tsBuildInfoFile": ".tsbuildinfo",
"incremental": true
},
"include": [
"**/*.ts",
"jest.config.cjs"
]
"compilerOptions": {
"target": "es2018",
"module": "esnext",
"moduleResolution": "node",
"noEmitOnError": true,
"lib": [
"es2018",
"dom"
],
"strict": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"declaration": true,
"importHelpers": true,
"outDir": "dist",
"sourceMap": true,
"inlineSources": true,
"rootDir": "./",
"tsBuildInfoFile": ".tsbuildinfo",
"incremental": true
},
"include": [
"**/*.ts",
"jest.config.cjs"
],
"exclude": [
"**/*.spec.ts",
"node_modules",
"dist"
]
}

0 comments on commit 66218b8

Please sign in to comment.