Skip to content

Instantly share code, notes, and snippets.

@z7pz
Created August 3, 2021 22:51
Show Gist options
  • Save z7pz/4ebff9205a98fa939c1d0dd319a48be6 to your computer and use it in GitHub Desktop.
Save z7pz/4ebff9205a98fa939c1d0dd319a48be6 to your computer and use it in GitHub Desktop.
// NEED "src" FILE IN SAME DIR.
{
"compilerOptions": {
"target": "ES3",
"module": "commonjs",
"declaration": true,
"allowSyntheticDefaultImports": true,
"allowJs": false,
"experimentalDecorators": true,
"outDir": "./lib",
"baseUrl": ".",
"suppressImplicitAnyIndexErrors": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"sourceMap": false,
"strict": false,
"esModuleInterop": true,
"jsx": "react",
"lib": [
"dom", "es6"
]
},
"include": [
"src/*",
"typings"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment