mirror of
https://github.com/fluencelabs/examples
synced 2024-12-05 11:40:18 +00:00
19 lines
484 B
JSON
19 lines
484 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es2015", "dom"],
|
|
"outDir": "./dist/",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"declarationMap": false,
|
|
"sourceMap": true,
|
|
"moduleResolution": "nodenext"
|
|
},
|
|
"exclude": ["node_modules", "dist"],
|
|
"include": ["src"]
|
|
}
|