Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Commit

Permalink
fix tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianmross committed Nov 26, 2023
1 parent 86b439d commit 9807ebf
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ bower_components
build/Release

# Dependency directories
build/
node_modules/
jspm_packages/

Expand Down
19 changes: 16 additions & 3 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
{
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"outDir": "./build"
"outDir": "./build",
"module": "commonjs",
"target": "ES2017",
"declaration": true,
"sourceMap": true,
"strict": true,
"noEmitOnError": true,
"lib": [],
"types": [],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
},
"include": ["src/**/*"]
"include": ["src/**/*"],
"exclude": ["node_modules", "build", "**/*.test.ts", "**/__tests__/*.ts", "**/__mocks__/*.ts", "**/build/**"]
}

0 comments on commit 9807ebf

Please sign in to comment.