24 lines
484 B
JSON
24 lines
484 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"declaration": true,
|
||
|
|
"outDir": "./js",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"sourceMap": true,
|
||
|
|
"inlineSourceMap": false,
|
||
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"]
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"js"
|
||
|
|
]
|
||
|
|
}
|