31 lines
678 B
JSON
31 lines
678 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "CommonJS",
|
|
"rootDir": "./",
|
|
"baseUrl": "./",
|
|
"outDir": "./dist",
|
|
"lib": [
|
|
"ES6",
|
|
"DOM"
|
|
],
|
|
"paths": {
|
|
"@server/*": ["./src/server/*"]
|
|
},
|
|
"plugins": [
|
|
{"transform": "@zerollup/ts-transform-paths"}
|
|
],
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./src/types"
|
|
],
|
|
"sourceMap": false,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": [
|
|
"./src/*",
|
|
"./src/server/**/*"
|
|
]
|
|
} |