forked from nuxt/devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 828 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 828 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
{
"compilerOptions": {
"rootDir": ".",
"baseUrl": ".",
"strict": true,
"module": "esnext",
"lib": ["esnext", "dom"],
"target": "esnext",
"moduleResolution": "node",
"noUnusedLocals": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"paths": {
"@nuxt/devtools": ["./packages/devtools/src/index.ts"],
"@nuxt/devtools-kit": ["./packages/devtools-kit/src/index.ts"],
"@nuxt/devtools-kit/types": ["./packages/devtools-kit/src/types/index.ts"],
"@nuxt/devtools-kit/iframe-client": ["./packages/devtools-kit/src/runtime/iframe-client.ts"]
}
},
"exclude": [
"**/node_modules",
"**/dist",
"**/playground",
"**/playgrounds",
"**/clones",
"**/docs",
"./packages/devtools/client"
]
}