26 lines
444 B
JSON
26 lines
444 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"noUnusedLocals": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "dist",
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"sourceMap": false,
|
|
"noEmitOnError": true,
|
|
"noImplicitAny": false
|
|
},
|
|
"include": [
|
|
"src/*",
|
|
"*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
]
|
|
} |