mirror of
https://github.com/selfxyz/self.git
synced 2026-01-10 15:18:18 -05:00
* cr feedback * update based on feedback * typing updates * unify yarn package version * update lock
28 lines
527 B
JSON
28 lines
527 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "NodeNext",
|
|
"declaration": true,
|
|
"declarationDir": "./dist/esm",
|
|
"outDir": "./dist/esm",
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "NodeNext",
|
|
|
|
"baseUrl": "./",
|
|
"composite": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.js",
|
|
"index.ts"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
]
|
|
}
|