Files
graylog2-server/graylog2-web-interface/tsconfig.json

46 lines
954 B
JSON

{
"compilerOptions": {
"target": "es2018",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": false,
"downlevelIteration": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": false,
"strictBindCallApply": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"paths": {
"*": ["./src/*", "./test/*"],
"@graylog/server-api": ["./target/api"]
}
},
"include": [
"src",
"test"
],
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
}
}