23 lines
450 B
JSON
23 lines
450 B
JSON
|
{
|
||
|
"extends": "@tsconfig/node16/tsconfig.json",
|
||
|
"compilerOptions": {
|
||
|
"lib": [
|
||
|
"esnext",
|
||
|
"dom",
|
||
|
"DOM.Iterable"
|
||
|
],
|
||
|
"isolatedModules": true,
|
||
|
"target": "ES6",
|
||
|
"module": "ES6",
|
||
|
"rootDir": "src/",
|
||
|
"outDir": "out/",
|
||
|
"sourceMap": true,
|
||
|
"strict": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules"
|
||
|
]
|
||
|
}
|