clash-verge-rev/tsconfig.json

26 lines
598 B
JSON
Raw Permalink Normal View History

2021-12-04 14:31:26 +08:00
{
"compilerOptions": {
2022-08-06 02:35:11 +08:00
"baseUrl": ".",
2021-12-04 14:31:26 +08:00
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
2023-10-21 23:53:57 +08:00
"skipLibCheck": true,
2021-12-04 14:31:26 +08:00
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2022-08-06 02:35:11 +08:00
"jsx": "react-jsx",
"paths": {
"@/*": ["src/*"],
"@root/*": ["./*"]
}
2021-12-04 14:31:26 +08:00
},
"include": ["./src"]
}