mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-01-07 03:26:54 +08:00
29 lines
579 B
JSON
29 lines
579 B
JSON
{
|
|
"extends": "@gplane/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./resources/assets/src/*"]
|
|
},
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"resources/assets/src",
|
|
"resources/assets/webpack.d.ts",
|
|
"tools",
|
|
"webpack.config.ts"
|
|
],
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"module": "commonjs"
|
|
}
|
|
}
|
|
}
|