wmr/docs/tsconfig.json
2021-06-06 16:59:34 -04:00

23 lines
491 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"jsx": "preserve",
"jsxFactory": "preact.h",
"jsxFragmentFactory": "preact.Fragment",
"allowJs": true,
"checkJs": true,
// "strict": true,
"noEmit": true,
"moduleResolution": "node",
"target": "ESNext",
"module": "esnext",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true
},
"include": ["node_modules/wmr/types.d.ts", "**/*"],
"typeAcquisition": {
"enable": true
}
}