nope/tsconfig.json

37 lines
711 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,
"outDir": "./dist",
"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"
],
"out": "docs"
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",
"dist"
2020-08-19 06:36:59 +00:00
]
2020-08-21 16:38:21 +00:00
}