14 lines
272 B
JSON
14 lines
272 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "commonjs",
|
||
|
|
"lib": ["ES2020"],
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"outDir": "./dist"
|
||
|
|
},
|
||
|
|
"include": ["**/*.ts"],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|