49 lines
991 B
JSON
49 lines
991 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"include": [".astro/types.d.ts", "**/*"],
|
|
"exclude": [
|
|
"dist",
|
|
"e2e",
|
|
"eslint.config.js",
|
|
"eslint.config.mjs",
|
|
"eslint.config.cjs"
|
|
],
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"strict": true
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../nx-dev/ui-markdoc"
|
|
},
|
|
{
|
|
"path": "../nx-dev/ui-icons"
|
|
},
|
|
{
|
|
"path": "../nx-dev/ui-common"
|
|
},
|
|
{
|
|
"path": "../nx-dev/ui-animations"
|
|
},
|
|
{
|
|
"path": "../nx-dev/feature-analytics"
|
|
},
|
|
{
|
|
"path": "./tsconfig.e2e.json"
|
|
}
|
|
]
|
|
}
|