24 lines
461 B
JSON
24 lines
461 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"lib": [
|
|
"dom",
|
|
"es2017"
|
|
],
|
|
"declaration": true,
|
|
"declarationDir": "./types",
|
|
"sourceMap": true,
|
|
"removeComments": false,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": "./",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
]
|
|
} |