nope/tsconfig.py.json

42 lines
833 B
JSON
Raw Normal View History

2022-06-22 18:10:53 +00:00
{
"compilerOptions": {
2022-07-17 20:50:00 +00:00
"target": "ES2021",
"lib": [
2022-07-23 05:39:56 +00:00
"ES2021",
"dom"
2022-07-17 20:50:00 +00:00
],
2022-06-22 18:10:53 +00:00
"allowJs": true,
"allowUnusedLabels": true,
"charset": "utf-8",
"experimentalDecorators": true,
2022-07-17 20:50:00 +00:00
"module": "ES2022",
2022-06-22 18:10:53 +00:00
"noFallthroughCasesInSwitch": false,
"noImplicitReturns": true,
"outDir": "./dist-py",
"pretty": false,
"removeComments": false,
"stripInternal": true,
"downlevelIteration": true,
"noImplicitAny": false,
"declaration": true
},
"include": [
"lib/communication",
"lib/decorators",
"lib/dispatcher",
"lib/eventEmitter",
"lib/helpers",
"lib/loader",
"lib/logger",
"lib/module",
"lib/observables",
"lib/promise",
"lib/pubSub"
2022-06-22 18:10:53 +00:00
],
"exclude": [
"node_modules",
"temp",
"dist-nodejs",
"dist-browser"
]
}