2020-08-23 03:54:33 +00:00
|
|
|
{
|
2020-09-07 03:41:46 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"pretty": true,
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"lib": ["es2017", "dom"],
|
|
|
|
"types": [
|
|
|
|
"inferno"
|
|
|
|
],
|
|
|
|
"jsx": "preserve",
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"baseUrl": "./src",
|
|
|
|
"noEmit": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
2022-06-21 21:42:29 +00:00
|
|
|
"experimentalDecorators": true,
|
2022-11-09 19:53:07 +00:00
|
|
|
"strictNullChecks": false,
|
2022-06-21 21:42:29 +00:00
|
|
|
"noFallthroughCasesInSwitch": true
|
2020-09-07 03:41:46 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*",
|
2021-03-19 14:22:47 +00:00
|
|
|
"node_modules/inferno/dist/index.d.ts"
|
2020-09-07 03:41:46 +00:00
|
|
|
]
|
2020-08-23 03:54:33 +00:00
|
|
|
}
|