mirror of
https://github.com/selfxyz/self.git
synced 2026-04-27 03:01:15 -04:00
* cr feedback * update based on feedback * typing updates * unify yarn package version * update lock
24 lines
495 B
JSON
24 lines
495 B
JSON
{
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "ES2020",
|
|
"moduleResolution": "NodeNext",
|
|
"module": "NodeNext",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"outDir": "./dist/esm",
|
|
"declaration": false,
|
|
"baseUrl": ".",
|
|
"composite": false
|
|
},
|
|
"include": ["tests/**/*", "tests/**/*.json", "src/**/*"],
|
|
"exclude": ["node_modules"],
|
|
"references": [
|
|
{
|
|
"path": "../common"
|
|
}
|
|
]
|
|
}
|