mirror of
https://github.com/selfxyz/self.git
synced 2026-02-19 02:24:25 -05:00
24 lines
470 B
JSON
24 lines
470 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": "./src",
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
]
|
|
}
|