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.
 
 

23 lines
521 B

{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"sourceMap": true,
"lib": ["ESNext", "DOM"],
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"target": "ES6",
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"@/*": [ "src/*" ]
}
},
"include": [
"src"
]
}