We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b99257 commit 30e388bCopy full SHA for 30e388b
tsconfig.json
@@ -1,15 +1,26 @@
1
{
2
"compilerOptions": {
3
- "target": "es5",
4
"module": "commonjs",
5
- "removeComments": true,
+ "target": "es5",
6
"experimentalDecorators": true,
7
- "sourceMap": true,
8
- "declaration": true
+ "emitDecoratorMetadata": true,
+ "noEmitHelpers": true,
+ "noEmitOnError": true,
9
+ "lib": [
10
+ "es6",
11
+ "dom"
12
+ ],
13
+ "baseUrl": ".",
14
+ "paths": {
15
+ "*": [
16
+ "./node_modules/tns-core-modules/*",
17
+ "./node_modules/*"
18
+ ]
19
+ }
20
},
- "files": [
- "demo/node_modules/tns-core-modules/tns-core-modules.d.ts",
- "nativescript-slides.ts"
- ],
- "compileOnSave": false
21
+ "exclude": [
22
+ "node_modules",
23
+ "demo",
24
+ "**/*.aot.ts"
25
26
}
0 commit comments