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.
tsconfig.json
1 parent c825897 commit 5856844Copy full SHA for 5856844
postinstall.ts
@@ -1,2 +1,2 @@
1
-const hook = require("nativescript-hook")(__dirname);
2
-hook.postinstall();
+const nsHook = require("nativescript-hook")(__dirname);
+nsHook.postinstall();
tsconfig.json
@@ -0,0 +1,21 @@
+{
+ "compilerOptions": {
3
+ "module": "commonjs",
4
+ "target": "es6",
5
+ "experimentalDecorators": true,
6
+ "emitDecoratorMetadata": true,
7
+ "noEmitHelpers": true,
8
+ "noEmitOnError": true,
9
+ "baseUrl": ".",
10
+ "paths": {
11
+ "*": [
12
+ "./node_modules/tns-core-modules/*",
13
+ "./node_modules/*"
14
+ ]
15
+ }
16
+ },
17
+ "exclude": [
18
+ "node_modules/tns-core-modules",
19
+ "platforms"
20
21
+}
0 commit comments