fennec-be/tsconfig.json

17 lines
363 B
JSON
Raw Normal View History

2021-01-31 11:15:21 +08:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"lib": ["ES2021"],
2021-01-31 11:15:21 +08:00
"sourceMap": true,
"outDir": "./dist",
2021-09-08 23:04:11 +08:00
"rootDir": "./src",
2021-01-31 11:15:21 +08:00
"baseUrl": "./",
2021-09-08 23:04:11 +08:00
},
2021-01-31 11:15:21 +08:00
}