You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
justact/tsconfig-common.json

21 lines
469 B

{
"compilerOptions": {
"rootDir": "./src/",
"composite": true,
"declarationDir": "dist",
"jsx": "react",
"jsxFactory": "justact.createElement",
"target": "esnext",
"moduleResolution": "node",
"allowJs": true,
"strict": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": [
"es2019",
"dom"
]
},
"include": ["./src/"]
}