mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 13:14:48 +01:00
27 lines
556 B
JSON
27 lines
556 B
JSON
|
{
|
||
|
"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": [
|
||
|
"./**/*"
|
||
|
]
|
||
|
}
|