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-02-02 18:49:51 -08:00

21 lines
344 B
JSON

{
"compilerOptions": {
"target": "es6",
"strict": true,
"noImplicitReturns": true,
"moduleResolution": "node",
"lib": [
"es2016",
"dom"
],
"baseUrl": ".",
"paths": {
"@/*": [
"./resources/assets/scripts/*"
]
}
},
"include": [
"./resources/assets/scripts/**/*"
]
}