21 lines
491 B
JSON
21 lines
491 B
JSON
{
|
|
"exclude": ["node_modules", "**/es", "**/lib"],
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"noEmitOnError": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "react",
|
|
"target": "es6",
|
|
"lib": ["DOM", "ES2020"]
|
|
}
|
|
}
|