nope/tsconfig.browser.json

33 lines
654 B
JSON
Raw 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": [
"esnext"
],
"allowJs": true,
"allowUnusedLabels": true,
"charset": "utf-8",
"experimentalDecorators": true,
"module": "ES2020",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": false,
"noImplicitReturns": true,
"outDir": "./dist",
"pretty": false,
"removeComments": true,
"rootDir": "./",
"stripInternal": true,
"downlevelIteration": true,
"noImplicitAny": false,
2022-01-17 14:39:48 +00:00
"declaration": true,
"noEmitOnError": 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",
"dist"
]
}