1
0
mirror of https://github.com/lencx/ChatGPT.git synced 2024-10-01 01:06:13 -04:00
Unofficial_ChatGPT_Client/tsconfig.json

29 lines
735 B
JSON
Raw Normal View History

2022-12-12 22:58:47 -05: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,
2022-12-13 06:10:42 -05:00
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
2022-12-14 11:02:54 -05:00
"@/*": ["src/*"],
2022-12-13 06:10:42 -05:00
"@view/*": ["src/view/*"],
"@comps/*": ["src/components/*"],
"@layout/*": ["src/layout/*"],
}
2022-12-12 22:58:47 -05:00
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}