* Replace default angular app config editor * Problems panel: migrate module to ts * Problems panel options editor to react * Problems panel react WIP * Fix explore button * Problems panel alert list layout WIP * Refactor * Minor tweaks on panel options * remove outdated tests * Update typescript * Draft for tag event handling * Remove unused files
26 lines
646 B
JSON
26 lines
646 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"target": "ES6",
|
|
"lib": [ "es6", "dom", "es2017" ],
|
|
"rootDir": "./src",
|
|
"jsx": "react",
|
|
"module": "esnext",
|
|
"declaration": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"inlineSourceMap": false,
|
|
"sourceMap": true,
|
|
"noEmitOnError": false,
|
|
"emitDecoratorMetadata": false,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": false,
|
|
"noImplicitUseStrict": false,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": false,
|
|
"baseUrl": "./src",
|
|
"strictFunctionTypes": false,
|
|
"skipLibCheck": true
|
|
}
|
|
}
|