51fefb2882
Vuetify's way of applying themes uses an inline stylesheet. This is incompatible with our CSP policy, so this change implements a Vite plugin that writes theme styles to CSS files that are statically served. Change-Id: I73e3a032435e46d41248c5181e913a8e04f65881
50 lines
998 B
JSON
50 lines
998 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",
|
|
"vitePlugins/**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|