-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (25 loc) · 742 Bytes
/
tsconfig.json
File metadata and controls
28 lines (25 loc) · 742 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
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "./dist",
"declarationMap": false,
"sourceMap": true,
"paths": {
"#app": ["./src/types/nuxt-app.d.ts"],
"@nuxt/schema": ["./node_modules/nuxt/schema"],
"nuxt/app": ["./node_modules/nuxt/app"],
"nuxt/dist/app/*": ["./node_modules/nuxt/dist/app/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "types/**/*.d.ts"],
"exclude": ["node_modules", "dist", "playground"]
}