12 lines
474 B
JSON
12 lines
474 B
JSON
|
|
{
|
||
|
|
"files": [],
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
// the typescript-plugin-css-modules only works when typescript is used as a LSP and not when "tsc" is invoked.
|
||
|
|
// Therefore when tsc is invoked, we need to disable the noPropertyAccessFromIndexSignature option.
|
||
|
|
// This is good, because its more of a lint anyways - the heavy lifting is done by the
|
||
|
|
// noUncheckedIndexedAccess rule
|
||
|
|
"noPropertyAccessFromIndexSignature": false
|
||
|
|
}
|
||
|
|
}
|