mirror of
https://github.com/Graylog2/graylog2-server.git
synced 2026-03-13 09:32:21 +08:00
* Renaming `authenticationBackends`. * Migrating `authenticationBackends`. * Treating polymorphic config structure as `unknown`. * Renaming `entityShareState`. * Migrating `entityShareState`. * Renaming `fields`. * Renaming `permissions`. * Migrating `permissions`. * Renaming `roles`. * Renaming `sharedEntities`. * Renaming `userOverviews`. * Renaming `users`. * Migrating `users`. * Adding `test` dir to roots. * Renaming `AsMock`. * Migrating `asMock`, fixing fallout. * Renaming `MockAction`. * Migrating `MockAction`. * Fixing fallout from typing `mockAction`. * Renaming `StoreMock`. * Migrating `StoreMock`. * Renaming `suppressConsole`. * Migrating `suppressConsole`. * Renaming `wrappedEnzyme`. * Migrating `wrappedEnzyme`. * Renaming `wrappedTestingLibrary`. * Migrating `wrappedTestingLibrary`. * Fixing linter hints.
32 lines
619 B
JSON
32 lines
619 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": false,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": ["*", "./src/*", "./test/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src",
|
|
"test"
|
|
]
|
|
}
|