Skip to content

Instantly share code, notes, and snippets.

@alejandrocoding
Created June 12, 2020 18:55
Show Gist options
  • Save alejandrocoding/907bc74aa4e8a2398c7b4f22f99a2f40 to your computer and use it in GitHub Desktop.
Save alejandrocoding/907bc74aa4e8a2398c7b4f22f99a2f40 to your computer and use it in GitHub Desktop.
Tsconfig includes background and contentScript into the TS compilation
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": ["chrome"]
},
"files": [
"src/main.ts",
"src/polyfills.ts",
"src/background.ts",
"src/contentScript.ts"
],
"include": [
"src/**/*.d.ts"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment