nope/tsconfig.browser.json

33 lines
656 B
JSON
Raw Permalink Normal View History

2021-09-02 06:20:26 +00:00
{
"compilerOptions": {
2021-11-12 07:57:03 +00:00
"target": "ES2019",
2021-09-02 06:20:26 +00:00
"lib": [
2022-06-24 05:45:01 +00:00
"esnext",
"dom"
2021-09-02 06:20:26 +00:00
],
"allowJs": true,
"allowUnusedLabels": true,
"charset": "utf-8",
"experimentalDecorators": true,
"module": "ES2020",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": false,
"noImplicitReturns": true,
2022-01-17 17:53:06 +00:00
"outDir": "./dist-browser",
2021-09-02 06:20:26 +00:00
"pretty": false,
"removeComments": false,
2021-09-02 06:20:26 +00:00
"stripInternal": true,
"downlevelIteration": true,
"noImplicitAny": false,
2022-01-17 14:39:48 +00:00
"declaration": true,
2021-09-02 06:20:26 +00:00
},
"include": [
2021-11-12 07:57:03 +00:00
"lib"
2021-09-02 06:20:26 +00:00
],
"exclude": [
"node_modules",
"temp",
2022-01-17 17:53:06 +00:00
"dist-nodejs",
"dist-browser"
2021-09-02 06:20:26 +00:00
]
}