ass/tsconfig.json

20 lines
283 B
JSON
Raw Permalink Normal View History

2021-09-08 02:22:06 +00:00
{
2022-03-14 18:31:18 +00:00
"extends": "@tsconfig/node16/tsconfig.json",
2021-09-08 02:22:06 +00:00
"compilerOptions": {
"outDir": "./dist",
2022-11-30 04:49:58 +00:00
"target": "ES2022",
2021-09-08 02:22:06 +00:00
"lib": [
2022-11-30 04:49:58 +00:00
"ES2022",
2021-09-08 02:22:06 +00:00
"DOM"
2021-09-08 02:50:32 +00:00
],
"allowJs": true,
"downlevelIteration": true
2021-09-08 02:22:06 +00:00
},
"include": [
2021-09-08 02:50:32 +00:00
"src/**/*.js",
"src/**/*.ts"
2021-09-08 02:22:06 +00:00
],
"exclude": [
"ass-x"
]
}