mirror of
https://github.com/prodigist/ReactiveNotes.git
synced 2026-07-22 12:30:26 +00:00
37 lines
772 B
JSON
37 lines
772 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "react",
|
|
"jsxFactory": "React.createElement", // Add this
|
|
"jsxFragmentFactory": "React.Fragment", // Add this
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7",
|
|
"ES2020"
|
|
],
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./src/types"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/types/**/*.d.ts"
|
|
]
|
|
}
|