27 lines
664 B
JSON
27 lines
664 B
JSON
{
|
|
"compilerOptions": {
|
|
"plugins": [{ "name": "typescript-plugin-css-modules" }],
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"types": [
|
|
"vite/client",
|
|
"vite-plugin-solid-svg/types-component-solid",
|
|
"@vitest/browser/providers/playwright"
|
|
],
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"isolatedModules": true,
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@api/clan/client": ["./src/api/clan/client-call"]
|
|
}
|
|
}
|
|
}
|