-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
tsconfig.json
29 lines (29 loc) · 868 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
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "./build/",
"target": "ESNext",
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "ESNext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": false,
"noEmit": true,
"types": ["cypress", "node", "vite"],
"paths": {
"@scripts/*": ["./package/src/scripts/*"],
"@src/*": ["./package/src/*"],
"@package/*": ["./package/*"],
"@/*": ["./*"],
"vanilla-calendar-pro": ["./package/src/index.ts"],
"vanilla-calendar-pro/types": ["package/src/types.ts"]
}
},
"include": ["**/*.ts", "**/*.js", "**/*.mjs", "**/*.cy.ts"],
"exclude": ["node_modules", "next/*"]
}