-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update generated build so is easier for projects to include the sdk i…
…n their building processes
- Loading branch information
1 parent
ce556df
commit 9482412
Showing
2 changed files
with
32 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,42 @@ | ||
{ | ||
"compilerOptions": { | ||
"skipLibCheck": true, | ||
"target": "es2019", | ||
"outDir": "build", | ||
"rootDir": "src", | ||
"moduleResolution": "node", | ||
"module": "es2020", | ||
"declaration": true, | ||
"declarationMap": true, | ||
"outDir": "./build", | ||
"strict": true, | ||
"inlineSources": true, | ||
"inlineSourceMap": true, | ||
"esModuleInterop": true, | ||
"skipLibCheck": true, | ||
"allowSyntheticDefaultImports": true, | ||
"resolveJsonModule": true, | ||
"useDefineForClassFields": false, | ||
"strict": true, | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"noImplicitReturns": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"traceResolution": false, | ||
"listEmittedFiles": false, | ||
"listFiles": false, | ||
"pretty": true, | ||
"experimentalDecorators": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"noImplicitOverride": true, | ||
"lib": ["es2020"], | ||
"types": [], | ||
"typeRoots": ["node_modules/@types", "src/types"] | ||
}, | ||
"include": ["src"], | ||
"include": ["src/**/*.ts"], | ||
"exclude": [ | ||
"node_modules", | ||
"src/**/*.spec.ts", | ||
"src/**/*.test.ts" | ||
] | ||
], | ||
"compileOnSave": false | ||
} |