Files
plexjs/tsconfig.json
2023-04-06 21:45:58 -05:00

23 lines
344 B
JSON

{
"compilerOptions": {
"declaration": true,
"target": "ES5",
"module": "CommonJS",
"noImplicitAny": true,
"outDir": "dist",
"rootDir": ".",
"lib": [
"es6",
"dom"
],
"typeRoots": [
"node_modules/@types"
],
"sourceMap": true
},
"exclude": [
"dist",
"node_modules"
]
}