mirror of
https://github.com/altcha-org/altcha-lib.git
synced 2026-01-25 04:18:21 +00:00
23 lines
486 B
JSON
23 lines
486 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "node",
|
|
"moduleDetection": "force",
|
|
"declaration": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"types": [
|
|
"node",
|
|
"vitest/importMeta",
|
|
],
|
|
"outDir": "./dist",
|
|
"baseUrl": "."
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["lib/**/*"],
|
|
}
|