[add] Jhipster base
This commit is contained in:
36
front-end/tsconfig.json
Normal file
36
front-end/tsconfig.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"jsx": "react",
|
||||
"target": "es5",
|
||||
"module": "esnext",
|
||||
"moduleResolution": "node",
|
||||
"sourceMap": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"removeComments": false,
|
||||
"noImplicitAny": false,
|
||||
"suppressImplicitAnyIndexErrors": true,
|
||||
"outDir": "build/www/app",
|
||||
"lib": ["es2015", "es2017", "dom"],
|
||||
"typeRoots": [
|
||||
"node_modules/@types"
|
||||
],
|
||||
"types": ["webpack-env"],
|
||||
"allowJs": true,
|
||||
"checkJs": false,
|
||||
"baseUrl": "./",
|
||||
"paths": {
|
||||
"app/*": ["src/main/webapp/app/*"]
|
||||
},
|
||||
"importHelpers": true,
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true
|
||||
},
|
||||
"include": [
|
||||
"src/main/webapp/app/typing.d.ts",
|
||||
"src/main/webapp/app/**/*"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user