-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathtsconfig.json
More file actions
20 lines (20 loc) · 929 Bytes
/
tsconfig.json
File metadata and controls
20 lines (20 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"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-widgets": ["plugin-widgets/src"],
"plugin-widgets/*": ["plugin-widgets/src/*"],
"svelte-native": ["node_modules/@nativescript-community/svelte-nativem"],
"svelte-native/*": ["node_modules/@nativescript-community/svelte-native/*"],
}
},
"include": ["app/**/*", "plugin-widgets/src/**/*", "tools/app/**/*", "typings/*.d.ts", "plugin-widgets/typings/*.d.ts"],
"exclude": ["node_modules", "tools/app/db"]
}