-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
37 lines (37 loc) · 1.23 KB
/
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
29
30
31
32
33
34
35
36
37
{
"compilerOptions": {
"target": "es2020",
"module": "esnext",
"moduleResolution": "node",
"removeComments": false,
"noLib": false,
"emitDecoratorMetadata": false,
"experimentalDecorators": true,
"lib": ["ESNext", "dom"],
"sourceMap": true,
"pretty": true,
"jsx": "react",
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noEmitHelpers": true,
"noEmitOnError": false,
"noImplicitAny": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipDefaultLibCheck": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"types": ["node", "svelte", "vue", "svelte-native"],
"skipLibCheck": true,
"baseUrl": "../",
"outDir": "../packages",
"plugins": [{ "transform": "@nativescript/webpack/dist/transformers/NativeClass", "type": "raw" }]
},
"include": ["../src/**/*", "./references.d.ts", "../references.d.ts", "../demo-vue/types"],
"exclude": ["node_modules", "platforms"],
"compileOnSave": false,
"vueCompilerOptions": {
"target": 2.7
}
}