30 lines
554 B
JSON
30 lines
554 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"module": "commonjs",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"outDir": "dist",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"plugins": [
|
|
{
|
|
"transform": "typescript-transform-paths"
|
|
},
|
|
{
|
|
"transform": "typescript-transform-paths",
|
|
"afterDeclarations": true
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"src/config.ts"
|
|
]
|
|
} |