21 lines
450 B
JSON
21 lines
450 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"noImplicitAny": true,
|
|
"outDir": "build",
|
|
"module": "esnext",
|
|
"target": "es5",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"ignoreDeprecations": "5.0",
|
|
"lib": ["es2018", "dom"],
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules"]
|
|
}
|