Created
July 17, 2019 13:34
-
-
Save htammen/165f89b0dcdfb3ac6d2dc71c24319f10 to your computer and use it in GitHub Desktop.
tsconfig.json (Typescript configuration file for UI5 typescript projects)
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": { | |
"module": "none", | |
"target": "es5", | |
"sourceMap": true, | |
"noEmit": false, | |
"downlevelIteration": true, | |
"checkJs": false, | |
"allowJs": false, | |
"lib": ["dom", "es5", "es2015.promise", "es2015.iterable"], | |
"types": ["@openui5/ts-types"] | |
}, | |
"include": [ | |
"./webapp/**/*.ts", | |
"./typings/**/*" | |
], | |
"exclude": ["./node_modules/**/*"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment