You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
421 B
22 lines
421 B
4 weeks ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"lib": [
|
||
|
"es2017",
|
||
|
"dom"
|
||
|
],
|
||
|
"target": "es2017",
|
||
|
"module": "commonjs",
|
||
|
"esModuleInterop": true,
|
||
|
"noImplicitThis": false,
|
||
|
"noUnusedLocals": true,
|
||
|
"removeComments": true,
|
||
|
"strict": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules"
|
||
|
],
|
||
|
"compileOnSave": false,
|
||
|
"buildOnSave": false
|
||
|
}
|