This repository has been archived on 2025-05-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Astral-nook/tsconfig.json
2019-06-09 17:29:10 -07:00

20 lines
349 B
JSON

{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"jsx": "react",
"strict": true,
"noImplicitReturns": true,
"moduleResolution": "node",
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@/*": [
"./resources/scripts/*"
]
}
},
"include": [
"./resources/scripts/**/*"
]
}