assemblyscript/std/assembly.json

18 lines
304 B
JSON
Raw Normal View History

{
2017-12-12 16:08:54 +01:00
"extends": "../tsconfig-base.json",
"compilerOptions": {
"target": "esnext",
2017-12-14 11:55:35 +01:00
"module": "commonjs",
"noLib": true,
"allowJs": false,
"typeRoots": [ "types" ],
"types": [ "assembly" ],
"baseUrl": ".",
"paths": {
"*": [
"./assembly/*"
]
}
}
}