mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-09 03:04:20 -04:00
WebApp: Fixing tsconfig
This commit is contained in:
parent
41d323bbd7
commit
b7050c3a01
@ -42,7 +42,10 @@
|
|||||||
"./node_modules/jquery/dist/jquery.min.js",
|
"./node_modules/jquery/dist/jquery.min.js",
|
||||||
"./node_modules/bootstrap/dist/js/bootstrap.bundle.min.js",
|
"./node_modules/bootstrap/dist/js/bootstrap.bundle.min.js",
|
||||||
"./node_modules/hls.js/dist/hls.js"
|
"./node_modules/hls.js/dist/hls.js"
|
||||||
]
|
],
|
||||||
|
"stylePreprocessorOptions": {
|
||||||
|
"includePaths": ["src"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"production": {
|
"production": {
|
||||||
|
@ -1,31 +1,63 @@
|
|||||||
|
// TODO:
|
||||||
|
//{
|
||||||
|
// "compileOnSave": false,
|
||||||
|
// "compilerOptions": {
|
||||||
|
// "baseUrl": "./",
|
||||||
|
// "outDir": "./dist/out-tsc",
|
||||||
|
// "forceConsistentCasingInFileNames": true,
|
||||||
|
// "strict": true,
|
||||||
|
// "noImplicitOverride": true,
|
||||||
|
// "noPropertyAccessFromIndexSignature": true,
|
||||||
|
// "noImplicitReturns": true,
|
||||||
|
// "noFallthroughCasesInSwitch": true,
|
||||||
|
// "sourceMap": true,
|
||||||
|
// "declaration": false,
|
||||||
|
// "downlevelIteration": true,
|
||||||
|
// "experimentalDecorators": true,
|
||||||
|
// "moduleResolution": "node",
|
||||||
|
// "importHelpers": true,
|
||||||
|
// "target": "es2017",
|
||||||
|
// "module": "es2020",
|
||||||
|
// "lib": [
|
||||||
|
// "es2020",
|
||||||
|
// "dom"
|
||||||
|
// ]
|
||||||
|
// },
|
||||||
|
// "angularCompilerOptions": {
|
||||||
|
// "enableI18nLegacyMessageIdFormat": false,
|
||||||
|
// "strictInjectionParameters": true,
|
||||||
|
// "strictInputAccessModifiers": true,
|
||||||
|
// "strictTemplates": true
|
||||||
|
// }
|
||||||
|
//}
|
||||||
{
|
{
|
||||||
"compileOnSave": false,
|
"compileOnSave": false,
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"baseUrl": "./",
|
"baseUrl": "./",
|
||||||
"outDir": "./dist/out-tsc",
|
"outDir": "./dist/out-tsc",
|
||||||
"forceConsistentCasingInFileNames": true,
|
|
||||||
"strict": true,
|
|
||||||
"noImplicitOverride": true,
|
|
||||||
"noPropertyAccessFromIndexSignature": true,
|
|
||||||
"noImplicitReturns": true,
|
|
||||||
"noFallthroughCasesInSwitch": true,
|
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"declaration": false,
|
"declaration": false,
|
||||||
"downlevelIteration": true,
|
"downlevelIteration": true,
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
|
"module": "esnext",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"importHelpers": true,
|
"importHelpers": true,
|
||||||
"target": "es2017",
|
"target": "es2015",
|
||||||
"module": "es2020",
|
"types": [ "jquery" ],
|
||||||
|
"typeRoots": [
|
||||||
|
"node_modules/@types"
|
||||||
|
],
|
||||||
"lib": [
|
"lib": [
|
||||||
"es2020",
|
"es2018",
|
||||||
"dom"
|
"dom"
|
||||||
]
|
],
|
||||||
|
"allowJs": true
|
||||||
},
|
},
|
||||||
|
"exclude": [
|
||||||
|
"dist/**"
|
||||||
|
],
|
||||||
"angularCompilerOptions": {
|
"angularCompilerOptions": {
|
||||||
"enableI18nLegacyMessageIdFormat": false,
|
"fullTemplateTypeCheck": true,
|
||||||
"strictInjectionParameters": true,
|
"strictInjectionParameters": true
|
||||||
"strictInputAccessModifiers": true,
|
|
||||||
"strictTemplates": true
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user