Created
June 12, 2020 18:55
-
-
Save alejandrocoding/907bc74aa4e8a2398c7b4f22f99a2f40 to your computer and use it in GitHub Desktop.
Tsconfig includes background and contentScript into the TS compilation
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
{ | |
"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