mirror of
https://github.com/xheldon/git-folder-sync.git
synced 2026-07-22 17:40:25 +00:00
21 lines
507 B
JSON
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"]
|
|
}
|