mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-04 14:40:17 +00:00
23 lines
438 B
JSON
23 lines
438 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": ["src/**/*"]
|
|
}
|