mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-03 12:59:14 -04:00
22 lines
485 B
JSON
22 lines
485 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"baseUrl": "./",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": ["vite/client"],
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src"]
|
|
}
|