Skip to content

Instantly share code, notes, and snippets.

@lighth7015
Created June 20, 2020 06:54
Show Gist options
  • Save lighth7015/a47e26eb7a73914ea74eb8a39a231235 to your computer and use it in GitHub Desktop.
Save lighth7015/a47e26eb7a73914ea74eb8a39a231235 to your computer and use it in GitHub Desktop.
tsconfig.json
{
"compilerOptions": {
"target": "es6",
"lib": [ "dom", "dom.iterable", "esnext" ],
"jsx": "react",
"jsxFactory": "React.h",
"module": "commonjs",
"moduleResolution": "node",
"baseUrl": "./",
"removeComments": false,
"noEmit": true,
"strict": true,
"allowJs": true,
"noImplicitThis": false,
"noImplicitAny": false,
"declaration": false,
"skipLibCheck": false,
"inlineSources": true,
"importHelpers": true,
"isolatedModules": false,
"esModuleInterop": true,
"downlevelIteration": true,
"listEmittedFiles": true,
"listFiles": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"types": [
"node"
],
"typeRoots": [
"@types",
"node_modules/@types"
]
},
"include": [
"./src/**/*.ts",
"./src/**/*.tsx"
],
"exclude": [
"./src/tests/**/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment