chronograf/ui/tsconfig.json

43 lines
1017 B
JSON
Raw Normal View History

2018-02-20 00:04:38 +00:00
{
"compilerOptions": {
2018-03-26 23:48:14 +00:00
"types": [
"node",
"lodash",
"enzyme",
"react",
"prop-types",
2018-04-04 21:21:06 +00:00
"jest",
"react-router",
2018-04-11 01:32:28 +00:00
"text-encoding",
"react-dnd",
"react-dnd-html5-backend"
2018-03-26 23:48:14 +00:00
],
2018-02-20 00:04:38 +00:00
"target": "es6",
2018-02-20 15:23:53 +00:00
"module": "es2015",
2018-02-20 00:04:38 +00:00
"moduleResolution": "node",
"lib": ["es6", "es2017", "dom", "webworker"],
2018-02-20 00:04:38 +00:00
"skipLibCheck": true,
"isolatedModules": false,
"esModuleInterop": true,
2018-02-20 00:04:38 +00:00
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noImplicitAny": false,
"noImplicitUseStrict": false,
"noUnusedParameters": true,
"noUnusedLocals": true,
"removeComments": true,
"noLib": false,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"checkJs": false,
"sourceMap": true,
"baseUrl": "./",
"rootDir": "./",
"outDir": "./build"
2018-02-24 19:08:02 +00:00
},
"exclude": ["assets", "build", "node_modules"]
2018-02-20 00:04:38 +00:00
}