Fixed tsconfig snippet

This commit is contained in:
Alexander Vakrilov
2017-05-09 13:30:56 +03:00
committed by GitHub
parent 9ba05afd43
commit 910f23afe6

View File

@ -14,9 +14,10 @@ TypeScript projects need to reference the **ES6 and DOM libraries**. Add this to
"lib": ["es6", "dom"], "lib": ["es6", "dom"],
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"*": [ "*": [
"./node_modules/tns-core-modules/*", "./node_modules/tns-core-modules/*",
"./node_modules/*"] "./node_modules/*"]
}
} }
} }
``` ```