Files
plexjs/sdk-resources/plexjs-resources/tsconfig.mustache
2023-04-19 21:26:38 -05:00

26 lines
539 B
Plaintext

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