Skip to content

Instantly share code, notes, and snippets.

@htammen
Created July 17, 2019 13:34
Show Gist options
  • Save htammen/165f89b0dcdfb3ac6d2dc71c24319f10 to your computer and use it in GitHub Desktop.
Save htammen/165f89b0dcdfb3ac6d2dc71c24319f10 to your computer and use it in GitHub Desktop.
tsconfig.json (Typescript configuration file for UI5 typescript projects)
{
"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