mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 04:20:46 +00:00
26 lines
539 B
Plaintext
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/**/*"
|
|
]
|
|
}
|