mirror of
https://github.com/10h30/astroplate.git
synced 2026-06-05 15:08:00 +09:00
26 lines
718 B
JSON
Executable File
26 lines
718 B
JSON
Executable File
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "es6",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"incremental": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"@/function-components/*": ["./src/layouts/function-components/*"],
|
|
"@/components/*": ["./src/layouts/components/*"],
|
|
"@/shortcodes/*": ["./src/layouts/shortcodes/*"],
|
|
"@/partials/*": ["./src/layouts/partials/*"],
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|