mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 22:03:36 +00:00
tsconfig for building main without webpack
This commit is contained in:
24
tsconfig.main.json
Normal file
24
tsconfig.main.json
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"moduleResolution": "node",
|
||||||
|
"noImplicitAny": true,
|
||||||
|
//"module": "es6",
|
||||||
|
//"target": "ES2016",
|
||||||
|
"allowJs": true,
|
||||||
|
"sourceMap": false,
|
||||||
|
"types": [],
|
||||||
|
"baseUrl": ".",
|
||||||
|
"paths": {
|
||||||
|
"jslib/*": [ "node_modules/@bitwarden/jslib/src/*" ]
|
||||||
|
},
|
||||||
|
"outDir": "build"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"src/main.ts"
|
||||||
|
],
|
||||||
|
"exclude": [
|
||||||
|
"node_modules",
|
||||||
|
"dist",
|
||||||
|
"build"
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user