-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathtsconfig.cli.json
More file actions
43 lines (43 loc) · 941 Bytes
/
tsconfig.cli.json
File metadata and controls
43 lines (43 loc) · 941 Bytes
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
{
"compilerOptions": {
"tsBuildInfoFile": "./.nuxt/tsconfig.cli.tsbuildinfo",
"target": "ESNext",
"jsx": "preserve",
"lib": ["ESNext"],
"moduleDetection": "force",
"useDefineForClassFields": true,
"module": "preserve",
"moduleResolution": "Bundler",
"paths": {
"~~/*": [
"./*"
],
"@@/*": [
"./*"
],
"#shared": [
"./shared"
],
"#shared/*": [
"./shared/*"
]
},
"resolveJsonModule": true,
"allowJs": true,
"strict": true,
"noImplicitOverride": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"noEmit": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
},
"include": [
"./shared/**/*.d.ts",
"./src/"
]
}