nova-betterchat/tsconfig.json

34 lines
966 B
JSON
Raw Permalink Normal View History

2023-03-03 06:25:10 +01:00
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2023-03-03 23:17:11 +01:00
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"@icon/*": ["./src/assets/icons/*"],
"@type/*": ["./src/types/*"],
"@store/*": ["./src/store/*"],
"@hooks/*": ["./src/hooks/*"],
"@constants/*": ["./src/constants/*"],
"@api/*": ["./src/api/*"],
"@components/*": ["./src/components/*"],
"@utils/*": ["./src/utils/*"],
"@src/*": ["./src/*"]
2023-03-03 23:17:11 +01:00
}
2023-03-03 06:25:10 +01:00
},
"include": ["src", "electron/index.cjs"],
2023-03-03 06:25:10 +01:00
"references": [{ "path": "./tsconfig.node.json" }]
}