20 lines
485 B
JSON
20 lines
485 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"lib": ["ES2020", "DOM"],
|
|
"types": ["node", "astro/client"]
|
|
},
|
|
"include": ["src", "types"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|