mirror of
https://github.com/fluencelabs/avm-runner-background
synced 2025-03-15 05:20:50 +00:00
25 lines
429 B
JSON
25 lines
429 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"lib": [
|
||
|
"es2015",
|
||
|
"dom"
|
||
|
],
|
||
|
"outDir": "./dist/",
|
||
|
"target": "es5",
|
||
|
"module": "commonjs",
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"skipLibCheck": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"declaration": true,
|
||
|
"declarationMap": false,
|
||
|
"sourceMap": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"dist"
|
||
|
],
|
||
|
"include": [
|
||
|
"src"
|
||
|
]
|
||
|
}
|