mirror of
https://github.com/selfxyz/self.git
synced 2026-01-14 00:58:07 -05:00
* fix package version mismatches and resolutions * fixes * update lock * fix comma * fixes * fix packages * update packages * remove firebase analytics. not needed
33 lines
611 B
JSON
33 lines
611 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "NodeNext",
|
|
"declaration": true,
|
|
"declarationDir": "./dist/esm",
|
|
"outDir": "./dist/esm",
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "NodeNext"
|
|
},
|
|
"include": [
|
|
"animations",
|
|
"index.ts",
|
|
"components/**.tsx",
|
|
"utils/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/__tests__/*",
|
|
"dist"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../../common"
|
|
}
|
|
]
|
|
}
|