-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathtsconfig.json
More file actions
19 lines (19 loc) · 911 Bytes
/
tsconfig.json
File metadata and controls
19 lines (19 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"extends":"./tools/tsconfig",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"],
"@shared/*": ["./tools/app/*"],
"kiss-orm": ["node_modules/@akylas/kiss-orm"],
"kiss-orm/*": ["node_modules/@akylas/kiss-orm/*"],
"@nativescript/core": ["node_modules/@akylas/nativescript"],
"@nativescript/core/*": ["node_modules/@akylas/nativescript/*"],
"plugin-nativeprocessor": ["plugin-nativeprocessor"],
"plugin-nativeprocessor/*": ["plugin-nativeprocessor/*"],
"plugin-zip": ["plugin-zip"],
"plugin-zip/*": ["plugin-zip/*"]
}
},
"include": ["app/**/*", "tools/app/**/*", "typings/*.d.ts", "plugin-nativeprocessor/*.ts", "plugin-nativeprocessor/typings", "plugin-zip/*.ts", "plugin-zip/typings", "plugin-shared/*.ts", "plugin-shared/typings"],
}