-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
37 lines (37 loc) · 1.18 KB
/
tsconfig.base.json
File metadata and controls
37 lines (37 loc) · 1.18 KB
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
32
33
34
35
36
37
{
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers": true,
"target": "ES2020",
"module": "ESNext",
"lib": ["ESNext", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react",
"baseUrl": ".",
"plugins": [
{
"transform": "@nativescript/webpack/dist/transformers/NativeClass",
"type": "raw"
}
],
"paths": {
"@demo/shared": ["tools/demo/index.ts"],
"@nstudio/*": ["packages/*"],
"@nstudio/nstreamdown": ["packages/nstreamdown/index.d.ts"],
"@nstudio/nstreamdown/angular": ["packages/nstreamdown/angular/index.ts"],
"@nstudio/nstreamdown/vue": ["packages/nstreamdown/vue/index.ts"],
"@nstudio/nstreamdown/react": ["packages/nstreamdown/react/index.ts"],
"@nstudio/nstreamdown/solid": ["packages/nstreamdown/solid/index.ts"],
"@nstudio/nstreamdown/svelte": ["packages/nstreamdown/svelte/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}