stash/ui/v2.5/tsconfig.json

31 lines
609 B
JSON
Raw Normal View History

2020-01-03 21:29:21 +00:00
{
"compilerOptions": {
2020-01-24 11:59:37 +00:00
"target": "ES2020",
2020-01-03 21:29:21 +00:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"noEmit": true,
2020-01-24 11:59:37 +00:00
"jsx": "react",
2020-01-03 21:29:21 +00:00
"downlevelIteration": true,
2020-01-11 22:14:20 +00:00
"experimentalDecorators": true,
2020-01-24 11:59:37 +00:00
"baseUrl": ".",
"paths": {
"src/*": ["./src/*"]
},
"sourceMap": true
2020-01-03 21:29:21 +00:00
},
"include": [
2020-01-11 22:14:20 +00:00
"src/**/*"
2020-01-03 21:29:21 +00:00
]
}