blueocean-plugin/tsconfig.json

30 lines
573 B
JSON

{
"compilerOptions": {
"outDir": "build",
"module": "commonjs",
"moduleResolution": "node",
"target": "es5",
"jsx": "react",
"allowJs": false,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"types": [
"bluebird-global"
],
"lib": [
"dom",
"es2018"
]
},
"exclude": [
"target",
"**/*.jsx"
]
}