Skip to content

Commit

Permalink
new tsconfig
Browse files Browse the repository at this point in the history
new tsconfig file derived from the template one in NS 3.0 projects
  • Loading branch information
JoshDSommer committed Jun 23, 2017
1 parent 5b99257 commit 30e388b
Showing 1 changed file with 20 additions and 9 deletions.
29 changes: 20 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"removeComments": true,
"target": "es5",
"experimentalDecorators": true,
"sourceMap": true,
"declaration": true
"emitDecoratorMetadata": true,
"noEmitHelpers": true,
"noEmitOnError": true,
"lib": [
"es6",
"dom"
],
"baseUrl": ".",
"paths": {
"*": [
"./node_modules/tns-core-modules/*",
"./node_modules/*"
]
}
},
"files": [
"demo/node_modules/tns-core-modules/tns-core-modules.d.ts",
"nativescript-slides.ts"
],
"compileOnSave": false
"exclude": [
"node_modules",
"demo",
"**/*.aot.ts"
]
}

0 comments on commit 30e388b

Please sign in to comment.