18 lines
413 B
JSON
18 lines
413 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"module": "commonjs",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"target": "es2015",
|
||
|
|
"declaration": true,
|
||
|
|
"downlevelIteration": true,
|
||
|
|
"lib": ["es2017", "dom"],
|
||
|
|
"types": ["jest", "node"]
|
||
|
|
},
|
||
|
|
"include": ["src/", "examples/"],
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|