mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-14 06:16:08 +01:00
29 lines
888 B
JSON
29 lines
888 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2021",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"useDefineForClassFields": true,
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"@yaakapp-internal/theme": ["../../packages/theme/src/index.ts"],
|
|
"@yaakapp-internal/theme/*": ["../../packages/theme/src/*"],
|
|
"@yaakapp-internal/ui": ["../../packages/ui/src/index.ts"],
|
|
"@yaakapp-internal/ui/*": ["../../packages/ui/src/*"],
|
|
},
|
|
},
|
|
"include": ["."],
|
|
"exclude": ["vite.config.ts"],
|
|
"references": [{ "path": "./tsconfig.node.json" }],
|
|
}
|