xheldon_git-folder-sync/tsconfig.json
2025-07-25 19:53:04 +08:00

21 lines
507 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES6",
"allowJs": true,
"noImplicitAny": false,
"moduleResolution": "node",
"importHelpers": true,
"declaration": true,
"outDir": "lib",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"typeRoots": ["node_modules/@types"],
"lib": ["DOM", "ES6"],
"jsx": "react-jsx"
},
"include": ["**/*.ts", "**/*.tsx"]
}