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

23 lines
430 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",
"lib": ["es2017", "dom"],
"experimentalDecorators": true,
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",
"./static/js/**/*.ts"
]
2016-10-26 17:59:41 +00:00
}