assembly/tsconfig.json
Georges KABBOUCHI 36d2d99f54 first commit
2021-07-17 19:50:30 +03:00

37 lines
581 B
JSON

{
"compilerOptions": {
"target": "ES2018",
"module": "ESNext",
"moduleResolution": "Node",
"lib": [
"ESNext",
"ESNext.AsyncIterable",
"DOM"
],
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": true,
"noEmit": true,
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./*"
],
"@/*": [
"./*"
]
},
"types": [
"@nuxt/types",
"@types/node"
]
},
"exclude": [
"node_modules",
".nuxt",
"dist"
]
}