Created
March 8, 2019 00:19
-
-
Save mikehibm/4430273996b9bc79da600dae8d41295f to your computer and use it in GitHub Desktop.
TypeScript config for WebWorker
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
{ | |
"compilerOptions": { | |
"target": "es5", | |
"lib": ["dom", "esnext", "webworker"], | |
"allowJs": false, | |
"skipLibCheck": true, | |
"esModuleInterop": true, | |
"listEmittedFiles": true, | |
"allowSyntheticDefaultImports": true, | |
"strict": true, | |
"forceConsistentCasingInFileNames": true, | |
"module": "none", | |
"alwaysStrict": false, | |
"strictFunctionTypes": false, | |
"strictPropertyInitialization": false, | |
"downlevelIteration": true, | |
"removeComments": true, | |
"outDir": "public" | |
}, | |
"include": ["src/players/*.worker.ts", "src/reversi.worker.ts"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment