-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
45 lines (45 loc) · 1.01 KB
/
Copy pathtsconfig.json
File metadata and controls
45 lines (45 loc) · 1.01 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
38
39
40
41
42
43
44
45
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"experimentalDecorators": true,
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"noEmit": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": "./",
"types": ["vite/client", "node", "vue"],
"paths": {
"@nativescript/core": ["./core/types.ts"]
},
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": [
"core/**/*.ts",
"core/**/*.d.ts",
"core/**/*.vue",
"angular/**/*.ts",
"vue/**/*.ts",
"vue/**/*.vue",
"index.ts",
"env.d.ts"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}