-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 864 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 864 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
{
"compilerOptions": {
"forceConsistentCasingInFileNames": false,
"module": "ESNext",
"moduleResolution": "Node",
"esModuleInterop": true,
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"types": ["vite/client", "node", "vite-plugin-svgr/client", "vitest/globals"],
"allowJs": true,
"baseUrl": ".",
"paths": {
"@/*": ["resources/js/*"],
"@icons/*": ["resources/icons/*"],
"@images/*": ["resources/images/*"]
}
},
"include": ["resources/**/*.ts", "resources/**/*.d.ts", "resources/**/*.tsx", "./vitest.setup.tsx"],
"exclude": ["node_modules", "**/*.spec.ts", "**/*.blade.php"]
}