mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-11 17:30:18 +00:00
22 lines
463 B
JSON
22 lines
463 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowJs": true,
|
||
|
"target": "ESNext",
|
||
|
"module": "ESNext",
|
||
|
"lib": ["es2015", "dom"],
|
||
|
"declaration": true,
|
||
|
"outDir": "dist",
|
||
|
"moduleResolution": "nodenext",
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"noImplicitAny": false,
|
||
|
"strictNullChecks": false,
|
||
|
"skipLibCheck": true
|
||
|
},
|
||
|
"exclude": ["node_modules", "dist", "bundle"],
|
||
|
"include": ["__test__/**/*"],
|
||
|
"ts-node": {
|
||
|
"esm": true
|
||
|
}
|
||
|
}
|