ChatGPT/tsconfig.json

29 lines
734 B
JSON
Raw Permalink Normal View History

2022-12-13 03:58:47 +00:00
{
"compilerOptions": {
2023-04-12 13:15:49 +00:00
"target": "ES2015",
2022-12-13 03:58:47 +00:00
"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 11:10:42 +00:00
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
2022-12-14 16:02:54 +00:00
"@/*": ["src/*"],
2022-12-13 11:10:42 +00:00
"@view/*": ["src/view/*"],
"@comps/*": ["src/components/*"],
2023-01-22 10:18:36 +00:00
"@layout/*": ["src/layout/*"]
2022-12-13 11:10:42 +00:00
}
2022-12-13 03:58:47 +00:00
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}