rimgu/tsconfig.json

18 lines
341 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"module": "commonjs",
"target": "es2019",
"noImplicitAny": true,
"strictNullChecks": true,
"declaration": true,
2021-10-07 17:23:17 +00:00
"sourceMap": true,
"outDir": "dist",
"typeRoots": [
"src/types/"
]
},
"include": [
"src/**/*"
]
}