nope/tsconfig.json

46 lines
889 B
JSON
Raw Normal View History

2020-08-19 06:36:59 +00:00
{
"compilerOptions": {
2022-01-17 14:39:48 +00:00
"target": "ES2019",
2020-08-19 06:36:59 +00:00
"lib": [
"esnext"
],
"allowJs": true,
2022-01-17 14:39:48 +00:00
"allowUnusedLabels": true,
"charset": "utf-8",
"experimentalDecorators": true,
"module": "commonjs",
2020-08-19 06:36:59 +00:00
"moduleResolution": "node",
2022-01-17 14:39:48 +00:00
"noFallthroughCasesInSwitch": false,
"noImplicitReturns": true,
2022-01-17 17:53:06 +00:00
"outDir": "./dist-nodejs",
2022-01-17 14:39:48 +00:00
"pretty": false,
"removeComments": false,
"stripInternal": true,
2020-08-25 10:33:33 +00:00
"downlevelIteration": true,
2022-01-17 14:39:48 +00:00
"noImplicitAny": false,
"declaration": true
},
"typedocOptions": {
"entryPoints": [
"lib/index.nodejs.ts"
],
2022-01-18 07:01:50 +00:00
"out": "docs",
"umlClassDiagram": {
"type": "detailed",
"location": "local",
"format": "png"
},
"includes": [
"lib"
]
2020-08-19 06:36:59 +00:00
},
"include": [
2022-01-17 14:39:48 +00:00
"lib",
2020-08-19 06:36:59 +00:00
],
"exclude": [
2022-01-17 14:39:48 +00:00
"node_modules",
"temp",
2022-01-17 17:53:06 +00:00
"dist-nodejs",
"dist-browser"
2020-08-19 06:36:59 +00:00
]
2020-08-21 16:38:21 +00:00
}