You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
556 B
27 lines
556 B
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"noImplicitAny": true,
|
|
"declaration": false,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"sourceMap": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"jsx": "react",
|
|
"jsxFactory": "renderer.create",
|
|
"lib": [
|
|
"es2017",
|
|
"dom"
|
|
]
|
|
},
|
|
"include": [
|
|
"./**/*"
|
|
]
|
|
}
|