e83e98e46a
Built side Vuetify subproject inside web/satellite with limited functinality. For now it has navigation side bar, simple project dashboard and team page (where you can list/add team members). Issue: https://github.com/storj/storj/issues/5854 Change-Id: I9ff3e80b8ace1dc31de6a788174c5ffc19f050f8
49 lines
969 B
JSON
49 lines
969 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"strictPropertyInitialization": false,
|
|
"resolveJsonModule": true,
|
|
"useUnknownInCatchVariables": false, // TODO: reenable it later
|
|
"types": [
|
|
"vuetify",
|
|
"filesystem"
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
],
|
|
"@poc/*": [
|
|
"vuetify-poc/src/*"
|
|
]
|
|
},
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable",
|
|
"scripthost"
|
|
]
|
|
},
|
|
"include": [
|
|
"vuetify-poc/src/**/*.ts",
|
|
"vuetify-poc/src/**/*.vue",
|
|
"src/**/*.ts",
|
|
"src/**/*.vue",
|
|
"src/types/*.d.ts",
|
|
"tests/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|