22 lines
381 B
JSON
22 lines
381 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "ES2020",
|
||
|
|
"lib": ["ES2020", "DOM"],
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./",
|
||
|
|
"declaration": true
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"*.ts"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"dist"
|
||
|
|
]
|
||
|
|
}
|