22 строки
506 B
JSON
22 строки
506 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"removeComments": true,
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"alwaysStrict": true,
|
|
"target": "ES2020",
|
|
"lib": ["ES2020", "DOM"],
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist"
|
|
},
|
|
"include": ["src"]
|
|
}
|