20 lines
464 B
JSON
20 lines
464 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"composite": true,
|
||
|
"lib": ["es6", "DOM"],
|
||
|
"jsx": "react",
|
||
|
"reactNamespace": "React",
|
||
|
"module": "commonjs",
|
||
|
"target": "es5",
|
||
|
"noImplicitAny": true,
|
||
|
"outDir": "lib",
|
||
|
"declaration": true,
|
||
|
"noEmitOnError": true,
|
||
|
"strict": true,
|
||
|
"incremental": true,
|
||
|
"sourceMap": true,
|
||
|
"esModuleInterop": true
|
||
|
},
|
||
|
"include": ["src/**/*"]
|
||
|
}
|