forked from NativeScript/NativeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
28 lines (28 loc) · 834 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"target": "ES2017",
"module": "esnext",
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitOnError": true,
"noEmitHelpers": true,
"diagnostics": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"lib": ["es2017", "dom"],
"types": ["node", "jest"],
"baseUrl": ".",
"paths": {
"@nativescript/core": ["packages/core/index.ts"],
"@nativescript/core/*": ["packages/core/*"],
"@nativescript/types-ios": ["packages/types-ios/src/index.ts"],
"@nativescript/types-android": ["packages/types-android/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp", "platforms", "__tests__"]
}