1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/frontend/tsconfig.json

38 lines
886 B
JSON
Raw Normal View History

2023-01-06 04:43:51 +02:00
{
"compilerOptions": {
"target": "esnext",
2023-01-06 04:43:51 +02:00
"allowJs": true,
"checkJs": false,
"baseUrl": "src",
"jsx": "react",
"module": "esnext",
2023-01-06 04:43:51 +02:00
"moduleResolution": "node",
2023-04-04 18:21:34 +02:00
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
2023-01-06 04:43:51 +02:00
"noEmit": true,
2023-04-04 18:21:34 +02:00
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"strict": true,
2023-01-06 04:43:51 +02:00
"esModuleInterop": true,
"typeRoots": ["node_modules/@types", "typings"],
"paths": {
"*": [
"*"
]
},
"plugins": [{ "name": "typescript-plugin-css-modules" }]
},
"include": [
"./src/**/*",
"./.eslintrc.js",
"./build/webpack.config.js",
"./typings/*.ts",
],
"exclude": [
"node_modules"
]
}