2023-07-04 12:47:41 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationDir": "./types",
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"outDir": "./types",
|
|
|
|
|
"target": "es5",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"lib": ["es2017", "dom"],
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"baseUrl": "src",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@src/*": ["./*"]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"exclude": ["node_modules", "dist", "types"],
|
2023-07-12 11:37:27 -04:00
|
|
|
"include": ["src/**/*", "types/index.d.ts"]
|
2023-07-04 12:47:41 -07:00
|
|
|
}
|