mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-01 17:39:39 +02:00
18 lines
373 B
JSON
18 lines
373 B
JSON
|
|
{
|
||
|
|
"extends": "../../tsconfig.base.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
||
|
|
"outDir": "dist",
|
||
|
|
"rootDir": "src",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./src/*"]
|
||
|
|
},
|
||
|
|
"noEmit": true,
|
||
|
|
"composite": true
|
||
|
|
},
|
||
|
|
"include": ["src", "vite-env.d.ts"]
|
||
|
|
}
|