EMS-vite/tsconfig.check.json

18 lines
422 B
JSON

{
"include": ["./src"],
"exclude": ["./src/**/*.test.ts", "./src/**/*.spec.ts", "./src/components/ui"],
"compilerOptions": {
"jsx": "react-jsx",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"target": "ES2020",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"noEmit": true,
"paths": {
"@/*": ["./src/*"]
}
}
}