mirror of
https://github.com/datahub-project/datahub.git
synced 2025-06-27 05:03:31 +00:00
39 lines
1.4 KiB
JSON
39 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "es2017",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": false,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"types": ["vitest/globals"],
|
|
"paths": {
|
|
"@components": ["./src/alchemy-components"],
|
|
"@components/*": ["./src/alchemy-components/*"],
|
|
"@app/*": ["./src/app/*"],
|
|
"@conf": ["./src/conf"],
|
|
"@conf/*": ["./src/conf/*"],
|
|
"@graphql/*": ["./src/graphql/*"],
|
|
"@graphql-mock/*": ["./src/graphql-mock/*"],
|
|
"@images/*": ["./src/images/*"],
|
|
"@providers/*": ["./src/providers/*"],
|
|
"@utils/*": ["./src/utils/*"],
|
|
"@types": ["./src/types.generated.ts"],
|
|
"@images": ["./src/images"],
|
|
"@src/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src", "src/conf/theme/styled-components.d.ts", "vite.config.ts", ".eslintrc.js", "functions"]
|
|
}
|