mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 14:58:25 -04:00
29 lines
472 B
JSON
29 lines
472 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"lib": [
|
|
"esnext",
|
|
"es2018",
|
|
"dom"
|
|
],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"noImplicitReturns": true,
|
|
"allowJs": true,
|
|
"typeRoots": [
|
|
"./types",
|
|
"./node_modules/@types"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"**/*.ts"
|
|
]
|
|
}
|