sonarqube/server/sonar-docs/tsconfig.json
Grégoire Aubert b1e8eaffc8 Upgrade sonar-docs to gatsby v2 and Typescript
* Upgrade to gatsby v2
* Migrate to TS
* Add jest tests of some components
* Remove glamor
2019-01-22 20:21:02 +01:00

27 lines
588 B
JSON

{
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"strictFunctionTypes": false,
"target": "esnext",
"jsx": "react",
"lib": ["dom", "es2017"],
"module": "commonjs",
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"noEmit": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"*": ["./src/@types/*"]
}
},
"include": ["./src/**/*"]
}