Created
March 4, 2021 07:11
-
-
Save rhom6us/8e62d952b2ca185dfc6e706e594361c5 to your computer and use it in GitHub Desktop.
Typescript config for generating @types
This file contains hidden or 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
Show hidden characters
{ | |
"compilerOptions": { | |
"noImplicitAny": false, | |
"strictFunctionTypes": false, | |
"strictPropertyInitialization": false, | |
"strictBindCallApply": false, | |
"noImplicitThis": false, | |
"noImplicitReturns": false, | |
"alwaysStrict": false, | |
"esModuleInterop": true, | |
"checkJs": false, | |
"allowJs": true, | |
"declaration": true, | |
"experimentalDecorators": true, | |
"emitDecoratorMetadata": true, | |
"moduleResolution": "node", | |
"target": "ESNext", | |
"jsx": "React", | |
"module": "ESNext", | |
"emitDeclarationOnly":true, | |
"declarationMap":true, | |
"declarationDir": "@types", | |
"outFile": "typings.d.ts" | |
}, | |
"include": ["src/**/*.js"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment