18 lines
477 B
JSON
18 lines
477 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./dist/esm",
|
|
"rootDir": "./src/ts",
|
|
"moduleResolution": "bundler",
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": ["./src/ts/**/*", "./types.d.ts", "./index.d.ts"]
|
|
}
|