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

20 lines
337 B
JSON
Raw Normal View History

{
"compilerOptions": {
2016-11-07 22:27:50 +00:00
"baseUrl": ".",
"jsx": "react",
"module": "commonjs",
"outDir": "./build/",
2016-10-26 17:59:41 +00:00
"target": "es5",
2016-11-07 22:27:50 +00:00
"sourceMap": true,
"paths": {
"sass/*": ["./static/css/directives/components/pages/*"]
}
},
"exclude": [
2016-10-26 17:59:41 +00:00
"node_modules"
],
"include": [
"./static/js/**/*.tsx"
]
2016-10-26 17:59:41 +00:00
}