You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SoulSync/webui/tsconfig.json

31 lines
708 B

{
"compilerOptions": {
"target": "ES2024",
"useDefineForClassFields": true,
"lib": ["ES2024", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"@/*": ["./src/*"]
},
"strict": true,
"jsx": "react-jsx",
"allowJs": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"skipLibCheck": true,
"noEmit": true,
"types": ["node", "vitest/globals", "@testing-library/jest-dom", "react", "react-dom"]
},
"include": [
"./src",
"./tests",
"./vitest.setup.ts",
"./vite.config.ts",
"./vitest.config.ts",
"./playwright.config.ts"
],
"references": []
}