21 lines
400 B
JSON
21 lines
400 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"jsx": "react",
|
|
"module": "commonjs",
|
|
"outDir": "./build/",
|
|
"target": "es5",
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"paths": {
|
|
"sass/*": ["./static/css/directives/components/pages/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"./static/js/**/*.tsx",
|
|
"./static/js/**/*.ts"
|
|
]
|
|
}
|