mirror of
https://github.com/10h30/astroplate.git
synced 2026-07-11 10:46:07 +09:00
moved types to src
This commit is contained in:
+13
-9
@@ -1,21 +1,25 @@
|
||||
{
|
||||
"extends": "astro/tsconfigs/strict",
|
||||
"compilerOptions": {
|
||||
"jsx": "react",
|
||||
"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/*"],
|
||||
"@/layouts/*": ["./src/layouts/*"],
|
||||
"@/content/*": ["./src/content/*"],
|
||||
"@/config/*": ["./src/config/*"],
|
||||
"@/styles/*": ["./src/styles/*"],
|
||||
"@/hooks/*": ["./src/hooks/*"],
|
||||
"@/lib/*": ["./src/lib/*"]
|
||||
"@/*": ["./src/*"],
|
||||
"react": ["./node_modules/@types/react"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"include": ["**/*.ts", "**/*.tsx"],
|
||||
"exclude": ["node_modules"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user