@cotype/core
Version:
<h2 align="center"> <img src="https://cotype.dev/logo.svg" alt="cotype" /> </h2>
28 lines (27 loc) • 654 B
JSON
{
"include": [
"./jest.setup.ts",
"./src/**/*",
"./client/src/**/*",
"./typings/**/*",
"./client/typings/**/*"
],
"exclude": ["**/node_modules/**"],
"compilerOptions": {
"strict": true,
"noImplicitAny": false,
"outDir": "lib",
"jsx": "react",
"target": "esnext",
"sourceMap": true,
"declaration": true,
"module": "commonjs",
"moduleResolution": "node",
"skipLibCheck": true,
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"lib": ["es6", "es2017.object", "dom", "esnext.asynciterable"]
}
}