aquavm/npm/tsconfig.json
Pavel 0ddc44bf52
Npm package (#98)
This commit migrates wasm wrapper from JS SDK into the air interpreter package.

Changes include:

* Adding directory for npm package
* Setting up typescript build pipeline
* Renaming package to air-interpreter
* Fixing CI pipelines to support the new build process
* Fixing issue with memory access violation in wasm wrapper
2021-05-05 15:43:50 +03:00

40 lines
909 B
JSON

{
"compilerOptions": {
"typeRoots": [
"./node_modules/@types",
],
"lib": [
"es2017",
"dom"
],
"outDir": "./dist/",
"allowJs": true,
"baseUrl": ".",
"sourceMap": true,
"inlineSources": true,
"strictFunctionTypes": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"pretty": true,
"target": "ES5",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"esModuleInterop": true,
"declarationMap": true,
"strict": true,
"noImplicitAny": false,
"alwaysStrict": true,
"noImplicitThis": true,
"strictNullChecks": false
},
"exclude": [
"node_modules",
"dist",
"bundle",
],
"include": [
"src"
]
}