mirror of
https://github.com/fluencelabs/registry-demo
synced 2025-04-24 16:02:12 +00:00
26 lines
457 B
JSON
26 lines
457 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,
|
||
|
"noImplicitAny": false
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"dist"
|
||
|
],
|
||
|
"include": [
|
||
|
"src"
|
||
|
]
|
||
|
}
|