2018-12-16 22:30:21 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-06-10 00:29:10 +00:00
|
|
|
"target": "es5",
|
2019-05-15 01:36:48 +00:00
|
|
|
"module": "esnext",
|
2019-06-10 00:29:10 +00:00
|
|
|
"jsx": "react",
|
2018-12-16 22:30:21 +00:00
|
|
|
"strict": true,
|
2018-12-30 03:24:09 +00:00
|
|
|
"noImplicitReturns": true,
|
2018-12-16 22:30:21 +00:00
|
|
|
"moduleResolution": "node",
|
2019-06-22 23:45:51 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2019-06-10 00:29:10 +00:00
|
|
|
"sourceMap": true,
|
2019-02-03 02:49:51 +00:00
|
|
|
"baseUrl": ".",
|
2019-06-10 02:26:20 +00:00
|
|
|
"lib": ["es2015", "dom"],
|
2019-02-03 02:49:51 +00:00
|
|
|
"paths": {
|
|
|
|
"@/*": [
|
2019-06-10 00:29:10 +00:00
|
|
|
"./resources/scripts/*"
|
2019-02-03 02:49:51 +00:00
|
|
|
]
|
|
|
|
}
|
2018-12-16 22:30:21 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2019-06-10 00:29:10 +00:00
|
|
|
"./resources/scripts/**/*"
|
2018-12-16 22:30:21 +00:00
|
|
|
]
|
|
|
|
}
|