funkyFlaskTest/source/tsconfig.json

18 lines
382 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"declaration": true,
"outDir": "./dist",
"rootDir": "./src",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"types": ["node"]
},
"include": ["./src"]
}