mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
24 lines
499 B
JSON
24 lines
499 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"module": "commonjs",
|
|
"target": "ES2021",
|
|
"sourceMap": true,
|
|
"resolveJsonModule":true,
|
|
"moduleResolution":"node",
|
|
"noImplicitUseStrict":true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"noImplicitOverride": true,
|
|
"baseUrl": "./",
|
|
"plugins": [
|
|
{ "transform": "../common/transform/transformer.js" }
|
|
]
|
|
},
|
|
"include": [
|
|
"./**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |