23 lines
615 B
JSON
23 lines
615 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"module": "ESNext",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"target": "ESNext",
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"typeRoots": ["./src/types", "./node_modules/@types", "./node_modules"],
|
|
"types": ["vite/client", "vite-plugin-compile-time/client", "dom-chromium-ai"]
|
|
},
|
|
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx"]
|
|
}
|