mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 00:13:53 +00:00
b7e758bf24
* chore: add typescript and dependencies * refactor: remove react imports * refactor: fix entrypoint * chore: upgrade chakra and deps * chore: configure eslint
37 lines
844 B
JSON
37 lines
844 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"allowJs": true,
|
|
"baseUrl": "src",
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"typeRoots": [
|
|
"./src/declarations/declaration.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|