Last active
March 22, 2019 16:04
-
-
Save liuzhoou/267388b896ff910661b0aeb1d0b4b762 to your computer and use it in GitHub Desktop.
tern-project & tsconfig.json
This file contains 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
{ | |
"libs": [ | |
"ecma5", | |
"ecma6", | |
"browser", | |
"jquery", | |
"underscore" | |
], | |
"loadEagerly": [ | |
"importantfile.js" | |
], | |
"plugins": { | |
"commonjs": {}, | |
"node": {}, | |
"node_resolve": {}, | |
"requirejs": { | |
"baseURL": "./", | |
"paths": {} | |
}, | |
"webpack": {}, | |
"es_modules": {} | |
}, | |
"ecmaScript": true, | |
"ecmaVersion": 6 | |
} |
This file contains 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
{ | |
"libs": ["browser", "ecma5", "ecma6"], | |
"loadEagerly": ["./*.js"], | |
"plugins": { | |
"requirejs": { | |
"baseURL": "./", | |
"paths": {} | |
}, | |
"node": {}, | |
"modules": {}, | |
"es_modules": {}, | |
"complete_strings": {} | |
} | |
} |
This file contains 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": { | |
"strictNullChecks": true, | |
"moduleResolution": "node", | |
"allowSyntheticDefaultImports": true, | |
"experimentalDecorators": true, | |
"jsx": "preserve", | |
"target": "es6" | |
}, | |
"exclude": [ | |
"node_modules" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment