You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
664 B
JSON

{
"compilerOptions": {
"target": "es2019",
"allowJs": true,
"esModuleInterop": true,
"module": "commonjs",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"declaration": true,
"sourceMap": false,
"outDir": "./dist",
"rootDir": "./src",
"baseUrl": ".",
"jsx": "react-jsx",
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"checkJs": false
},
"include": ["src/"],
"exclude": [
"**/__tests__",
"**/__fixtures__",
"node_modules",
"build",
".cache"
]
}