peertube-plugin-livechat/client/tsconfig.json

30 lines
1006 B
JSON
Raw Normal View History

2021-04-07 16:14:58 +00:00
{
"compilerOptions": {
"module": "es6",
"moduleResolution": "node",
2021-04-07 16:14:58 +00:00
"target": "es5",
"allowJs": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"alwaysStrict": true, // should already be true because of strict:true
"noImplicitAny": true, // should already be true because of strict:true
"noImplicitThis": true, // should already be true because of strict:true
"noImplicitReturns": true,
"strictBindCallApply": true, // should already be true because of strict:true
"noUnusedLocals": true,
"allowSyntheticDefaultImports": true, // Seems necessary for peertube types to work
"isolatedModules": true, // Needed by esbuild https://esbuild.github.io/content-types/#isolated-modules
"esModuleInterop": true, // Needed by esbuild https://esbuild.github.io/content-types/#es-module-interop
2021-04-07 16:14:58 +00:00
"outDir": "../dist/client",
"paths": {
"shared/*": ["../shared/*"]
}
2021-04-07 16:14:58 +00:00
},
"include": [
"./**/*",
"../shared/**/*"
],
2021-04-07 16:14:58 +00:00
"exclude": []
}