blessing-skin-server/tsconfig.json

29 lines
568 B
JSON
Raw Normal View History

2019-03-17 21:09:46 +08:00
{
"extends": "@gplane/tsconfig",
"compilerOptions": {
"declaration": false,
"allowJs": true,
"target": "es2015",
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"baseUrl": ".",
"paths": {
"@/js/*": [
"./resources/assets/tests/ts-shims/*",
"./resources/assets/src/js/*"
2019-03-18 09:55:24 +08:00
],
"@/components/*": [
"./resources/assets/src/components/*"
2019-03-18 15:00:18 +08:00
],
"@/views/*": [
"./resources/assets/src/views/*"
2019-03-17 21:09:46 +08:00
]
}
},
"exclude": [
"node_modules",
"vendor"
]
}