This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/tsconfig.json

18 lines
297 B
JSON
Raw Normal View History

{
"compilerOptions": {
2016-11-07 22:27:50 +00:00
"baseUrl": ".",
"module": "commonjs",
"outDir": "./build/",
2016-10-26 17:59:41 +00:00
"target": "es5",
"lib": ["es2017", "dom"],
"experimentalDecorators": true,
"sourceMap": true
},
"exclude": [
2016-10-26 17:59:41 +00:00
"node_modules"
],
"include": [
"./static/js/**/*.ts"
]
2016-10-26 17:59:41 +00:00
}