index.community/frontend/tsconfig.json

34 lines
680 B
JSON
Raw Normal View History

2018-08-27 12:07:32 +00:00
{
"compilerOptions": {
2020-05-19 13:45:27 +00:00
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2018-08-27 12:07:32 +00:00
"allowJs": true,
2020-05-19 13:45:27 +00:00
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
2020-05-19 13:45:27 +00:00
"strict": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
2018-08-27 12:07:32 +00:00
"moduleResolution": "node",
2020-05-19 13:45:27 +00:00
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"noImplicitAny": true,
2018-08-27 12:07:32 +00:00
"noImplicitReturns": true,
"noUnusedLocals": true,
2020-05-19 13:45:27 +00:00
"jsx": "react",
2019-07-19 18:19:53 +00:00
"typeRoots": [
"./node_modules/@types",
"./src/typings"
],
2018-08-27 12:07:32 +00:00
},
2019-07-19 18:19:53 +00:00
"include": [
"src"
]
2018-08-27 12:07:32 +00:00
}