mirror of
https://github.com/selfxyz/self.git
synced 2026-01-08 22:28:11 -05:00
23 lines
446 B
JSON
23 lines
446 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,
|
|
"moduleResolution": "NodeNext"
|
|
},
|
|
"include": [
|
|
"index.ts",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
],
|
|
}
|