20 lines
307 B
JSON
20 lines
307 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "CommonJS",
|
||
|
"esModuleInterop": true,
|
||
|
"outDir": "dist",
|
||
|
"target": "ES6",
|
||
|
"strict": true,
|
||
|
"lib": [
|
||
|
"es2020",
|
||
|
"DOM"
|
||
|
],
|
||
|
"typeRoots": [
|
||
|
"./node_modules/@types",
|
||
|
"./src/types"
|
||
|
]
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
]
|
||
|
}
|