-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
31 lines (31 loc) · 960 Bytes
/
tsconfig.base.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
29
30
31
{
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers": true,
"target": "es2017",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"plugins": [
{
"transform": "@nativescript/webpack/dist/transformers/NativeClass",
"type": "raw"
}
],
"paths": {
"@demo/shared": ["tools/demo/index.ts"],
"@ticnat/*": ["packages/*"],
"@ticnat/nativescript-searchable-select": ["packages/nativescript-searchable-select/index.d.ts"],
"@ticnat/nativescript-woosim-printer": ["packages/nativescript-woosim-printer/index.d.ts"],
"@ticnat/nativescript-x-printer-bt": ["packages/nativescript-x-printer-bt/index.d.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}