30 lines
618 B
JSON
30 lines
618 B
JSON
{
|
|
"compilerOptions": {
|
|
"ignoreDeprecations": "6.0",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"baseUrl": ".",
|
|
"strictNullChecks": true,
|
|
"allowJs": false,
|
|
"declaration": true,
|
|
"plugins": [
|
|
{
|
|
"name": "@astrojs/ts-plugin"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@components/*": ["src/components/*"],
|
|
"@assets/*": ["src/assets/*"],
|
|
"@constants/*": ["src/constants/*"],
|
|
"@utils/*": ["src/utils/*"],
|
|
"@i18n/*": ["src/i18n/*"],
|
|
"@layouts/*": ["src/layouts/*"],
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|