mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-03-16 07:40:54 +00:00
22 lines
412 B
JSON
22 lines
412 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
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"bundle"
|
|
],
|
|
"include": ["src/**/*"]
|
|
}
|