16 lines
355 B
JSON
16 lines
355 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [".astro/types.d.ts", "**/*"],
|
|
"exclude": ["dist"],
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@middlelayer-types/*": ["middlelayer/types/*"],
|
|
"@middlelayer/*": ["middlelayer/*"]
|
|
}
|
|
}
|
|
}
|