forked from Uninen/vite-ts-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
31 lines (31 loc) · 768 Bytes
/
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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": false,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"useDefineForClassFields": true,
"lib": ["esnext", "dom"],
"skipLibCheck": true,
"plugins": [{ "name": "@vuedx/typescript-plugin-vue" }],
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"src/**/*.ts",
"tests/**/*.spec.ts",
"tests/**/*.test.ts",
"src/**/*.d.ts",
"src/**/*.vue",
"./components.d.ts"
],
"exclude": ["node_modules", "dist", "public"],
"references": [{ "path": "./tsconfig.node.json" }]
}