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