Skip to content

Instantly share code, notes, and snippets.

@Joe1220
Created June 7, 2020 12:09
Show Gist options
  • Save Joe1220/9145aeda760f571d55b95de0d2c398f6 to your computer and use it in GitHub Desktop.
Save Joe1220/9145aeda760f571d55b95de0d2c398f6 to your computer and use it in GitHub Desktop.
edit tsconfig.json
{
"extends": "./tsconfig.paths.json",
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"lib": ["es6", "dom", "esnext.asynciterable"],
"sourceMap": true,
"allowJs": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": false,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"outDir": "./build"
},
"exclude": ["node_modules", "build"],
"include": ["**/*.ts", "**/*.tsx", "src/**/*.ts"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment