2023-04-14 13:58:13 +00:00
|
|
|
{
|
2023-08-30 16:38:46 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2017",
|
|
|
|
"module": "esnext",
|
|
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationDir": "./types",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"jsx": "react-jsx"
|
|
|
|
},
|
|
|
|
"include": ["vitest.config.ts", "*.d.ts", "project", "project/**"],
|
|
|
|
"exclude": ["node_modules", "**/**/*.md", "**/dist", "test", "docs", "dist"]
|
2023-04-14 13:58:13 +00:00
|
|
|
}
|