27 lines
671 B
JSON
27 lines
671 B
JSON
{
|
|
// Only include files in the src directory
|
|
"include": ["./packages/**/src/**/*"],
|
|
"compilerOptions": {
|
|
// Tells the compiler to check JS files
|
|
"checkJs": true,
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ES2020", "DOM"],
|
|
"outDir": "types",
|
|
"strict": false,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"noEmit": false,
|
|
"emitDeclarationOnly": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"typeAcquisition": {
|
|
"include": ["jest"]
|
|
}
|
|
}
|