nope/tsconfig.py.json
Martin Karkowski 7f65859258 Updating helper
2022-07-23 07:39:56 +02:00

32 lines
619 B
JSON

{
"compilerOptions": {
"target": "ES2021",
"lib": [
"ES2021",
"dom"
],
"allowJs": true,
"allowUnusedLabels": true,
"charset": "utf-8",
"experimentalDecorators": true,
"module": "ES2022",
"noFallthroughCasesInSwitch": false,
"noImplicitReturns": true,
"outDir": "./dist-py",
"pretty": false,
"removeComments": false,
"stripInternal": true,
"downlevelIteration": true,
"noImplicitAny": false,
"declaration": true
},
"include": [
"lib",
],
"exclude": [
"node_modules",
"temp",
"dist-nodejs",
"dist-browser"
]
}