-
-
Notifications
You must be signed in to change notification settings - Fork 929
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c6323f8
commit d28e7dd
Showing
13 changed files
with
40 additions
and
106 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
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"target": "ES2019", | ||
"noEmit": false, | ||
"emitDeclarationOnly": true, | ||
"rootDir": "src", | ||
"outDir": "dist/types", | ||
|
||
// This negates what is set in the extended tsconfig.json | ||
"noImplicitAny": true, | ||
"skipLibCheck": false, | ||
"allowSyntheticDefaultImports": false, | ||
"resolveJsonModule": false | ||
}, | ||
"include": ["src"] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,20 +1,22 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ES2019", | ||
"moduleResolution": "Node", | ||
"rootDir": "src", | ||
"outDir": "dist", | ||
"target": "ESNext", | ||
"moduleResolution": "node", | ||
"module": "ESNext", | ||
"strict": true, | ||
"noEmit": true, | ||
"declaration": true, | ||
"esModuleInterop": true, | ||
"allowJs": true, | ||
"alwaysStrict": true, | ||
"strictFunctionTypes": true, | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"useUnknownInCatchVariables": true, | ||
"stripInternal": true, | ||
"baseUrl": "." | ||
|
||
// We need to disable these for now, and need to tackle them in another PR | ||
"strictNullChecks": false, | ||
"strictBindCallApply": false, | ||
"noImplicitAny": false, | ||
|
||
// These are configs specifically for !build and have to be reverted in the tsconfig.build.json | ||
"skipLibCheck": true, | ||
"allowSyntheticDefaultImports": true, | ||
"resolveJsonModule": true | ||
}, | ||
"include": ["src/**/*"], | ||
"exclude": ["node_modules"] | ||
"exclude": ["node_modules", "dist", "locale"] | ||
} |
This file was deleted.
Oops, something went wrong.