Last active
February 9, 2019 15:44
-
-
Save stackdumper/e9516f69f1b2d787c3036c0d30b53dad to your computer and use it in GitHub Desktop.
Typescript config
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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "esnext", | |
"module": "none", | |
"lib": ["dom", "esnext"], | |
"jsx": "preserve", | |
/* Module Resolution Options */ | |
"moduleResolution": "node", | |
"baseUrl": "./", | |
"paths": { | |
"@/*": ["src/*"], | |
}, | |
"allowSyntheticDefaultImports": true, | |
"esModuleInterop": true, | |
/* Experimental Options */ | |
"experimentalDecorators": true, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment